PHP code example of lectero / laragate

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

    

lectero / laragate example snippets


use Lectero\Laragate\Traits\HasPermissions;

class User extends Authenticatable
{
    use HasPermissions;
}

Route::group(['middleware' => ['permission:permission name']], function () {
    // your routes
});
bash
php artisan vendor:publish --provider="Lectero\Laragate\LaragateServiceProvider"