PHP code example of ganga / laravel-auth-themes

1. Go to this page and download the library: Download ganga/laravel-auth-themes 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/ */

    

ganga / laravel-auth-themes example snippets


$ php artisan vendor:publish

protected $commands = [
    Commands\AuthThemeCommand::class,
];
bash
$ php artisan make:auth
 php
$providers = [
    ...
    ...
    ...,
    Ganga\AuthThemes\AuthThemesServiceProvider::class,
];

$aliases = [
    ...
    ...
    ...
    'AuthTheme' => App\Providers\RouteServiceProvider::class,
];
bash
$ php artisan make:auth
bash
$ php artisan auth:theme https://github.com/gangachris/default-laravel-auth-theme.git