Download the PHP package kishor-rajbanshi/laravel-blade without Composer
On this page you can find all versions of the php package kishor-rajbanshi/laravel-blade. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download kishor-rajbanshi/laravel-blade
More information about kishor-rajbanshi/laravel-blade
Files in kishor-rajbanshi/laravel-blade
Package laravel-blade
Short Description Effortlessly create custom Blade files in Laravel with a single Artisan command.
License MIT
Homepage https://github.com/kishor-rajbanshi/laravel-blade
Informations about the package laravel-blade
Laravel Blade
A convenient Artisan command for effortlessly creating custom Blade files in Laravel.
Table of Contents
- Installation
- Usage
- Creating Blade Templates
- Basic Usage
- Using Subfolders
- Example
- License
- Support and Issues
- Contributing
- Author
Installation
You can install this package via Composer:
After installation, the Artisan command make:blade
will be available in your Laravel application.
Usage
Creating Blade Templates
Basic Usage
To create a new Blade file in the default resources/views
directory, use the following Artisan command:
Replace {template-name}
with the name of your Blade file.
Using Subfolders
You can create Blade files within subfolders using either slashes or dots as separators. For example:
This command will create a Blade file named blade.blade.php
within the folder/folder
subdirectory.
You can use dots as separators as well:
This command will achieve the same result, creating the Blade file in the folder/folder
subdirectory.
If the specified subfolder does not exist, it will be created automatically.
Example
Let's create a Blade template named welcome
in a subfolder:
This command will create a Blade file named welcome.blade.php
within the resources/views/subfolder
directory, and it will create the subfolder
directory if it doesn't exist.
License
This package is open-source software licensed under the MIT License.
Support and Issues
If you encounter any issues or have questions about this package, please feel free to open an issue on GitHub.
Contributing
Contributions are welcome! If you'd like to improve this package or report any bugs, please fork the repository and create a pull request.
Author
This Laravel Blade package is developed by Kishor Rajbanshi.
Thank you for using Laravel Blade! We hope it enhances your Laravel development experience.