add nova
This commit is contained in:
51
nova/src/Concerns/InteractsWithEvents.php
Normal file
51
nova/src/Concerns/InteractsWithEvents.php
Normal file
@@ -0,0 +1,51 @@
|
||||
<?php
|
||||
|
||||
namespace Laravel\Nova\Concerns;
|
||||
|
||||
use Illuminate\Support\Facades\Event;
|
||||
use Laravel\Nova\Events\NovaServiceProviderRegistered;
|
||||
use Laravel\Nova\Events\ServingNova;
|
||||
|
||||
trait InteractsWithEvents
|
||||
{
|
||||
/**
|
||||
* Register an event listener for the Nova "booted" event.
|
||||
*
|
||||
* @param (\Closure(\Laravel\Nova\Events\NovaServiceProviderRegistered):(void))|string $callback
|
||||
* @return void
|
||||
*/
|
||||
public static function booted($callback)
|
||||
{
|
||||
Event::listen(NovaServiceProviderRegistered::class, $callback);
|
||||
}
|
||||
|
||||
/**
|
||||
* Register an event listener for the Nova "serving" event.
|
||||
*
|
||||
* @param (\Closure(\Laravel\Nova\Events\ServingNova):(void))|string $callback
|
||||
* @return void
|
||||
*/
|
||||
public static function serving($callback)
|
||||
{
|
||||
Event::listen(ServingNova::class, $callback);
|
||||
}
|
||||
|
||||
/**
|
||||
* Flush the persistent Nova state.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public static function flushState()
|
||||
{
|
||||
static::$rtlCallback = null;
|
||||
static::$createUserCallback = null;
|
||||
static::$createUserCommandCallback = null;
|
||||
static::$dashboards = [];
|
||||
static::$jsonVariables = [];
|
||||
static::$resources = [];
|
||||
static::$resourcesByModel = [];
|
||||
static::$scripts = [];
|
||||
static::$styles = [];
|
||||
static::$tools = [];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user