PHP code example of fpmsdis / sdisauth

1. Go to this page and download the library: Download fpmsdis/sdisauth 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/ */

    

fpmsdis / sdisauth example snippets

 artisan breeze:install
 artisan route:list

        php artisan vendor:publish --provider="Spatie\Permission\PermissionServiceProvider"
    
 
        php artisan vendor:publish --tag=sdisauth --force
        php artisan vendor:publish --tag=sdisauth-migrations --force
        php artisan vendor:publish --tag=config --force
        php artisan vendor:publish --tag=sdisauth-assets --force
        php artisan vendor:publish --tag=sdisauth-routes --force
        php artisan vendor:publish --tag=sdisauth-controllers --force
        php artisan vendor:publish --tag=sdisauth-requests --force
        php artisan vendor:publish --tag=sdisauth-models --force
        php artisan vendor:publish --tag=sdisauth-seeders --force 
    
 authentificationRoutes.php 

        php artisan migrate:fresh --seed
        php artisan optimize:clear
    

        php artisan vendor:publish --provider="Spatie\Permission\PermissionServiceProvider"
        php artisan vendor:publish --provider="Sdisauth\AuthServiceProvider" --force
    
authentificationRoutes.php

        php artisan migrate:fresh --seed
        php artisan optimize:clear
    

        php artisan route:list