yaza/artisan-blade
最新稳定版本:V1.0.0
Composer 安装命令:
composer require yaza/artisan-blade
包简介
You can make blade using artisan command
README 文档
README
Requirement
- Laravel 9.*
- PHP 8.1
Description
This package can make blade file laravel with artisan command, and setup a template html with stub file
Installation
You can install the package via composer:
composer require yaza/artisan-blade --dev
You can publish the config file with (Optional):
php artisan vendor:publish --tag="artisan-blade-config"
Usage
artisan command
- Create file blade
php artisan make:blade blade_name
- Create file blade with directory
php artisan make:blade path/blade_name
- Create file blade with template stub (note : you need publish config this package)
php artisan make:blade path/blade_name --stub=stubfile
Make and customize template stub file
- you need publish this config with
php artisan vendor:publish --tag="artisan-blade-config"
- setting config path
<?php return [ /* * Default location template */ "path" => "template", /* * select default stub file */ "default" => "default" ];
- you need create folder template in folder resources
- create file *.stub, if you set the default stub file as default you need create default.stub in folder template
Example
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Credits
License
The MIT License (MIT). Please see License File for more information.
统计信息
- 总下载量: 223
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-07-10