Skip to content

devvaibhav1234/layout-master

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

Layout Master

License

Layout Master is a Laravel package that provides [brief description of what your package does].

Installation

You can install the package via composer:

composer require 7ts/layout-master After installing the package, add the service provider to the providers array in the config/app.php file:

'providers' => [ // Other service providers... \SevenTS\LayoutMaster\LayoutServiceProvider::class, ],

Usage

After adding the service provider, you can customize your layout by publishing the required files based on your needs.

Publish Layout Views Only To publish only the layout views, run:

php artisan vendor:publish --tag=views Publish Controllers and Routes If you want to include controllers and routes along with the layout views, run:

php artisan vendor:publish --tag=layouts After publishing controllers and routes, add the additional service provider to the providers array in the config/app.php file:

'providers' => [ // Other service providers... \App\Providers\LayoutServiceProvider::class, ],

Contributing

If you would like to contribute to the project, please follow the steps below:

Fork the repository. Create a new branch for your feature or bugfix. Commit and push your changes. Submit a pull request. Security If you discover any security-related issues, please email [your contact email] instead of using the issue tracker.

License

The MIT License (MIT). Please see License File for more information.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published