PHP code example of thalles / baseadmin

1. Go to this page and download the library: Download thalles/baseadmin library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

thalles / baseadmin example snippets


php artisan vendor:publish --tag=config

php artisan adminlte:install

php artisan config:clear

    php artisan make:enum UserRole
    



namespace App\Http\Middleware;

use Illuminate\Auth\Middleware\Authenticate as Middleware;

class Authenticate extends Middleware
{
    /**
     * Get the path the user should be redirected to when they are not authenticated.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return string|null
     */
    protected function redirectTo($request)
    {
        if (! $request->expectsJson()) {
            return route('admin.login');
        }
    }
}

    php artisan vendor:publish --tag=views
    

    php artisan vendor:publish --tag=routes
    

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