first commit
This commit is contained in:
28
app/Listeners/RouteMatched.php
Normal file
28
app/Listeners/RouteMatched.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
namespace App\Listeners;
|
||||
|
||||
class RouteMatched
|
||||
{
|
||||
/**
|
||||
* Create the event listener.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Handle the event.
|
||||
*
|
||||
* @param object $event
|
||||
* @return void
|
||||
*/
|
||||
public function handle(\Illuminate\Routing\Events\RouteMatched $event)
|
||||
{
|
||||
//
|
||||
// dd($event->route);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user