Files
ProxyPanel/app/View/Components/Alert.php
2020-09-05 12:40:25 +08:00

20 lines
309 B
PHP

<?php
namespace App\View\Components;
use Illuminate\View\Component;
class Alert extends Component {
public $type;
public $message;
public function __construct($type, $message) {
$this->type = $type;
$this->message = $message;
}
public function render() {
return view('components.alert');
}
}