Package for webpage layout
- Master layout
- Bootstrap 3
- Partials
- Navigation
- Footer
- Admin Dashboard
- Pages
- Home Page
- About Page
- Contacts Page
Begin by installing this package through Composer. Edit your project's composer.json file to require martinsdeee/xlayout.
{
"require": {
"martinsdeee/xlayout": "dev-master"
}
}Next, update Composer from the Terminal:
composer update
Once this operation completes, the final step is to add the service provider. Open app/config/app.php, and add a new item to the providers array.
'Martinsdeee\Xlayout\XlayoutServiceProvider',
'Way\Form\FormServiceProvider'Publish assets
php artisan asset:publish
php artisan asset:publish martinsdeee/xlayout
Migrate database
php artisan migrate --package="martinsdeee/xlayout"