Clone this repository
composer install
copy .env.example .env
php artisan key:generate
php artisan migrate
php artisan serve --port=3000
now you can visit localhost:3000 and see the project
✔️ AdminLte Bootstrap Dashboard
✔️ Laravel UI
✔️ Vue
To show the title and breadcrumbs, you have to create a $title and a $breadcrumbs variables on each page (you can leave them empty)
// Define the page's title
$title = "Home";
// Define the breadcrumbs
$breadcrumbs = [
'First' => ['url' => '/first'],
'Second' => ['url' => '/second'],
'Third' => ['url' => '/third']
];





