PHP code example of hi-folks / lara-lens

1. Go to this page and download the library: Download hi-folks/lara-lens 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/ */

    

hi-folks / lara-lens example snippets


return [
    'prefix' => env('LARALENS_PREFIX', 'laralens'), // URL prefix (default=laralens)
    'middleware' => explode(';', env('LARALENS_MIDDLEWARE', 'web')), // middleware (default=web) more separate with ;
    'web-enabled' => env('LARALENS_WEB_ENABLED', 'off') // Activate web view (default=off)
];
shell script
php artisan laralens:diagnostic
shell script
php artisan laralens:diagnostic --table=migrations --column-sort=id
shell script
php artisan laralens:diagnostic --table=users --column-sort=created_at
shell script
php artisan laralens:diagnostic --table=users --column-sort=updated_at
shell script
php artisan laralens:diagnostic --show=config --show=connection --show=database --show=runtime --show=migration
shell script
php artisan laralens:diagnostic --show=database
shell script
php artisan laralens:diagnostic --show=all
shell script
php artisan laralens:diagnostic --show=php-ext
shell script
php artisan laralens:diagnostic --show=php-ini
shell script
php artisan laralens:diagnostic --skip-database
sh
php artisan laralens:diagnostic --style=borderless
sh
php artisan laralens:diagnostic --large
shell script
php artisan vendor:publish --provider="HiFolks\LaraLens\LaraLensServiceProvider" --tag="config"