PHP code example of doctype_admin / doctype_website

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

    

doctype_admin / doctype_website example snippets

sh
php artisan DoctypeAdminWebsite:install -a
sh
php artisan DoctypeAdminWebsite:install -d
sh
php artisan migrate
sh
     [
            'text' => 'Website',
            'icon' => 'fas fa-globe',
            'submenu' => [
                [
                    'text' => 'Counters',
                    'icon' => 'fas fa-clock',
                    'url' => 'admin/website/counter',
                ],
                [
                    'text' => 'Team',
                    'icon' => 'fas fa-people-arrows',
                    'url' => 'admin/website/team',
                ],
                [
                    'text' => 'Page',
                    'icon' => 'fas fa-file',
                    'url' => 'admin/website/page',
                ],
                [
                    'text' => 'Portfolio',
                    'icon' => 'fas fa-camera',
                    'url' => 'admin/website/portfolio',
                ],
                [
                    'text' => 'Image',
                    'icon' => 'fas fa-images',
                    'url' => 'admin/website/image',
                ],
                [
                    'text' => 'Service',
                    'icon' => 'fas fa-concierge-bell',
                    'url' => 'admin/website/service',
                ],
                [
                    'text' => 'FAQ',
                    'icon' => 'fas fa-question',
                    'url' => 'admin/website/faq',
                ],
                [
                    'text' => 'Plan',
                    'icon' => 'fas fa-plus',
                    'url' => 'admin/website/plan',
                ],
                [
                    'text' => 'Project',
                    'icon' => 'fas fa-book',
                    'url' => 'admin/website/project',
                ],
            ]
        ],