24 lines
396 B
PHP
24 lines
396 B
PHP
<?php
|
|
|
|
namespace Beike\Admin\View\Components;
|
|
|
|
use Illuminate\View\Component;
|
|
|
|
class Alert extends Component
|
|
{
|
|
public string $type;
|
|
|
|
public string $msg;
|
|
|
|
public function __construct(?string $type, string $msg)
|
|
{
|
|
$this->type = $type ?? 'success';
|
|
$this->msg = $msg;
|
|
}
|
|
|
|
public function render()
|
|
{
|
|
return view('admin::components.alert');
|
|
}
|
|
}
|