1 | <?php |
||
16 | class RoutesServiceProvider extends PortRoutesServiceProviderAbstract |
||
17 | { |
||
18 | use RoutesLoaderTrait; |
||
19 | use HashIdTrait; |
||
20 | |||
21 | /** |
||
22 | * Instance of the Laravel default Router Class |
||
23 | * |
||
24 | * @var \Illuminate\Routing\Router |
||
25 | */ |
||
26 | private $webRouter; |
||
27 | |||
28 | /** |
||
29 | * Instance of the Dingo Api router. |
||
30 | * |
||
31 | * @var \Dingo\Api\Routing\Router |
||
32 | */ |
||
33 | public $apiRouter; |
||
34 | |||
35 | /** |
||
36 | * Define your route model bindings, pattern filters, etc. |
||
37 | */ |
||
38 | public function boot() |
||
45 | |||
46 | /** |
||
47 | * Define the routes for the application. |
||
48 | * |
||
49 | * @param \Illuminate\Routing\Router $webRouter |
||
50 | */ |
||
51 | public function map(LaravelRouter $webRouter) |
||
59 | |||
60 | |||
61 | } |
||
62 |