gabriel89oliveira / laravel-starter
Sidebar layout for Laravel application
Installs: 10
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:Vue
This package is auto-updated.
Last update: 2025-08-29 02:53:43 UTC
README
Laravel package to include starter configurations and files to accelerate project development
Install
composer require gabriel89oliveira/laravel-starter --dev
Publish desired part
You can publish only part of this package, according to your necessity
Sidebar layout
Sidebar layout is a fancy layout with Nav and a Sidebar Menu.
It will add to you Vue folder some files for main layout.
php artisan vendor:publish --tag=laravel-sidebar-layout
In your app.js file, import ref
+ import { ref } from 'vue'
then update createApp function with the following
return createApp({ render: () => h(App, props), + provide() { + return { + toggleSidebar: ref(true) + } } })