PHP code example of fr3on / laravel-atlas
1. Go to this page and download the library: Download fr3on/laravel-atlas 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/ */
fr3on / laravel-atlas example snippets
// config/atlas.php
return [
'path' => 'atlas',
/*
* Toggle the dashboard on or off.
*/
'enabled' => env('ATLAS_ENABLED', app()->isLocal()),
/*
* Select which panels you want to 'policies' => true, // New!
'schedule' => true,
],
];
bash
php artisan vendor:publish --tag="atlas-config"