PHP code example of hawkiq / livewire-starter-kit

1. Go to this page and download the library: Download hawkiq/livewire-starter-kit 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/ */

    

hawkiq / livewire-starter-kit example snippets


return [

    'theme_toggle' => true,
    'driver' => 'auto',

    'sidebar' => [

        [
            'type' => 'group',
            'text' => 'Platform',
            'items' => [
                [
                    'text' => 'Dashboard',
                    'url' => 'dashboard',
                    'icon' => 'home',
                    'permission' => null,
                ],
            ],
        ],

    ],

];

'icon' => 'home',

'icon' => 'fas fa-users',

'driver' => 'auto',

'url' => 'dashboard',

'url' => 'https://laravel.com',

'url' => '/custom-page',

'theme_toggle' => true,

config/ui.php