<?php
namespace TCG\Voyager\Events;
use Illuminate\Queue\SerializesModels;
class RoutingAdminAfter
{
use SerializesModels;
public $router;
public function __construct()
{
$this->router = app('router');
// @deprecate
//
event('voyager.admin.routing.after', $this->router);
}
}