PHP code example of zepson_admin / landing_page

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

    

zepson_admin / landing_page example snippets

sh
php artisan DoctypeAdminLanding:install -a
sh
php artisan DoctypeAdminLanding:install -d
sh
php artisan DoctypeAdminLanding:install -g
sh
php artisan migrate
sh


use doctype_admin\Landing\Models\Service;
use Illuminate\Database\Seeder;

class DatabaseSeeder extends Seeder
{
    /**
     * Seed the application's database.
     *
     * @return void
     */
    public function run()
    {
        // $this->call(UserSeeder::class);
        $this->call(LandingsTableSeeder::class);
        $this->call(FeaturesTableSeeder::class);
        $this->call(ServicesTableSeeder::class);
    }
}

sh
 [
            'text' => 'Landing Page',
            'icon' => 'fas fa-chess-rook',
            'submenu' => [
                [
                    'text' => 'Feature',
                    'icon' => 'fas fa-fire',
                    'url' => 'admin/feature',
                ],
                [
                    'text' => 'Service',
                    'icon' => 'fas fa-concierge-bell',
                    'url' => 'admin/service',
                ],
                [
                    'text' => 'Plans',
                    'icon' => 'fas fa-money-check',
                    'url' => 'admin/plan',
                ],
                [
                    'text' => 'Landing Setting',
                    'icon' => 'fas fa-cog',
                    'url' => 'admin/landing_setting',
                ],
                [
                    'text' => 'Contact',
                    'icon' => 'fas fa-envelope-square',
                    'url' => 'admin/contact',
                ],

            ]
        ],