php Laravel:地图数据库路线

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php Laravel:地图数据库路线相关的知识,希望对你有一定的参考价值。

<?php

namespace App\Providers;

use Illuminate\Support\Facades\Route;
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;

class RouteServiceProvider extends ServiceProvider
{
    /**
     * This namespace is applied to your controller routes.
     *
     * In addition, it is set as the URL generator's root namespace.
     *
     * @var string
     */
    protected $namespace = 'App\Http\Controllers';

    /**
     * Define your route model bindings, pattern filters, etc.
     *
     * @return void
     */
    public function boot()
    {
        //

        parent::boot();
    }

    /**
     * Define the routes for the application.
     *
     * @return void
     */
    public function map()
    {
        $this->mapApiRoutes();

        $this->mapWebRoutes();

        $this->mapDatatableRoutes();
    }

    /**
     * Define the "web" routes for the application.
     *
     * These routes all receive session state, CSRF protection, etc.
     *
     * @return void
     */
    protected function mapWebRoutes()
    {
        Route::middleware('web')
             ->namespace($this->namespace)
             ->group(base_path('routes/web.php'));
    }

    /**
     * Define the "api" routes for the application.
     *
     * These routes are typically stateless.
     *
     * @return void
     */
    protected function mapApiRoutes()
    {
        Route::prefix('api')
             ->middleware('api')
             ->namespace($this->namespace)
             ->group(base_path('routes/api.php'));
    }

    /**
     * Define the "datatable" routes for the application.
     *
     * These routes are typically stateless.
     *
     * @return void
     */
    protected function mapDatatableRoutes()
    {
        Route::prefix('datatable')
             ->middleware('web')
             ->namespace($this->namespace . '\Datatable')
             ->as('datatable.')
             ->group(base_path('routes/datatable.php'));
    }
}

以上是关于php Laravel:地图数据库路线的主要内容,如果未能解决你的问题,请参考以下文章

我在 laravel 5.6 路线中更改了 web.php,但仍然给了我旧路线

Laravel 5.2 高 cpu 和长路线

php ACF谷歌地图 - 获取路线链接

php Laravel Middleware路线和请求信息

php 获取Laravel的可用路线

php Laravel Customized Auth路线