PHP code example of modstore / laravel-enum-js

1. Go to this page and download the library: Download modstore/laravel-enum-js 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/ */

    

modstore / laravel-enum-js example snippets


php artisan vendor:publish --provider="Modstore\LaravelEnumJs\LaravelEnumJsServiceProvider"
 php
// config/filesystems.php
...
'disks' => [
    'enum-js' => [
        'driver' => 'local',
        'root' => resource_path() . '/js/enums',
    ],
],
...
 bash
php artisan enum-js:generate 
 bash
composer dump-autoload
php artisan enum-js:generate