catchAdmin/app/Listeners/RouteMatched.php

29 lines
417 B
PHP
Raw Normal View History

2022-12-05 23:01:12 +08:00
<?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);
}
}