定制 yaza/artisan-blade 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

yaza/artisan-blade

最新稳定版本:V1.0.0

Composer 安装命令:

composer require yaza/artisan-blade

包简介

You can make blade using artisan command

README 文档

README

artisan command

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

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

  1. Create file blade
php artisan make:blade blade_name
  1. Create file blade with directory
php artisan make:blade path/blade_name
  1. 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

  1. you need publish this config with
php artisan vendor:publish --tag="artisan-blade-config"
  1. setting config path
<?php
return [
    /*
    * Default location template
    */
    "path" => "template",

    /*
    * select default stub file
    */
    "default" => "default"
];
  1. you need create folder template in folder resources
  2. create file *.stub, if you set the default stub file as default you need create default.stub in folder template folder structure

Example

  1. php artisan make:blade user artisan blade
  2. php artisan make:user --stub=modal stub modal

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

GitHub 信息

  • Stars: 3
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2022-07-10