PHP code example of fschirinzi / laramote
1. Go to this page and download the library: Download fschirinzi/laramote 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/ */
fschirinzi / laramote example snippets
bash
php artisan laramote:install
php
/**
* Register the LaraMote gate.
*
* This gate determines who can access LaraMote in non-local environments.
*
* @return void
*/
protected function gate()
{
Gate::define('useLaraMote', function ($user = null) {
return in_array(optional($user)->email, [
//
]);
});
}
bash
php artisan laramote:publish
bash
php artisan vendor:publish --tag=laramote-config