mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-04 07:22:34 +00:00
Migrate to HTMX (#114)
Dropped Livewire Added HTMX Added Blade code lint Drop Mysql and Redis Migrate to SQLite
This commit is contained in:
19
app/Facades/Toast.php
Normal file
19
app/Facades/Toast.php
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Facades;
|
||||
|
||||
use Illuminate\Support\Facades\Facade;
|
||||
|
||||
/**
|
||||
* @method static void success(string $message)
|
||||
* @method static void error(string $message)
|
||||
* @method static void warning(string $message)
|
||||
* @method static void info(string $message)
|
||||
*/
|
||||
class Toast extends Facade
|
||||
{
|
||||
protected static function getFacadeAccessor(): string
|
||||
{
|
||||
return 'toast';
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user