mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 19:01:37 +00:00
14 lines
153 B
PHP
14 lines
153 B
PHP
<?php
|
|
|
|
namespace App\Traits;
|
|
|
|
use App\Helpers\Toast;
|
|
|
|
trait HasToast
|
|
{
|
|
public function toast(): Toast
|
|
{
|
|
return new Toast($this);
|
|
}
|
|
}
|