mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-22 19:22:19 +00:00
20 lines
391 B
PHP
20 lines
391 B
PHP
<?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';
|
|
}
|
|
}
|