PHP code example of creative-syntax / artisan-ui

1. Go to this page and download the library: Download creative-syntax/artisan-ui 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/ */

    

creative-syntax / artisan-ui example snippets


CreativeSyntax\ArtisanUi\CreativeSyntaxArtisanUi::class,

php artisan vendor:publish --tag="artisan-ui:config"

php artisan vendor:publish --provider="CreativeSyntax\ArtisanUi\CreativeSyntaxArtisanUi" --force

Ex: http://your-website/onex/artisan-ui

Ex: http://localhost:8000/onex/artisan-ui

/** If you want to disable the route or this feature, then make it false */
'is_route_enabled' => true,

/** If you want to change the route prefix */
'route_prefix' => 'onex',

/** If you want to change the route name or path */
'route_name' => 'artisan-ui',

/** If you want to change the page heading */
'page_heading' => 'Artisan UI',

/** If you want to enable the securiry for access the artisan commands user interface (UI)
 *  Then make it ('is_enabled') true and also you can set login-id and password 
 */
'authentication' => [
    'is_enabled' => env('ARTISAN_UI_AUTH_ENABLED', false),
    'login_id' => env('ARTISAN_UI_LOGIN_ID', 'onexadmin'),
    'password' => env('ARTISAN_UI_LOGIN_PASSWORD', 'onexpassword')
]