PHP code example of bantenprov / dashboard-epormas

1. Go to this page and download the library: Download bantenprov/dashboard-epormas 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/ */

    

bantenprov / dashboard-epormas example snippets

 php
'providers' => array(
    ...
    Bantenprov\DashboardEpormas\EpormasServiceProvider::class,
),
 bash
$ php artisan dashboard:epormas
$ php artisan vendor:publish --tag=views
$ php artisan vendor:publish --tag=migrations
 php
$this->call('EpormasCounterTableSeeder');
$this->command->info('EpormasCounter table seeded!');

$this->call('EpormasCityTableSeeder');
$this->command->info('EpormasCity table seeded!');

$this->call('EpormasCategoryTableSeeder');
$this->command->info('EpormasCategory table seeded!');