All Projects → foryoufeng → Laravel Generator

foryoufeng / Laravel Generator

Licence: other
laravel-generator / laravel代码生成器

Projects that are alternatives of or similar to Laravel Generator

Blade Ui Kit
A set of renderless components to utilise in your Laravel Blade views.
Stars: ✭ 763 (+1150.82%)
Mutual labels:  laravel, blade
Laravel Bootstrap Table List
Bootstrap table list generator for Laravel.
Stars: ✭ 16 (-73.77%)
Mutual labels:  laravel, generator
Laravel Notify
Flexible Flash notifications for Laravel
Stars: ✭ 787 (+1190.16%)
Mutual labels:  laravel, blade
Idea Php Laravel Plugin
Laravel Framework Plugin for PhpStorm / IntelliJ IDEA
Stars: ✭ 537 (+780.33%)
Mutual labels:  laravel, blade
Tailwindcss
A Tailwind CSS frontend preset for the Laravel Framework
Stars: ✭ 1,056 (+1631.15%)
Mutual labels:  laravel, blade
Blade
🔪 A standalone version of Laravel's Blade templating engine for use outside of Laravel.
Stars: ✭ 542 (+788.52%)
Mutual labels:  laravel, blade
Laravel Stager
Laravel Stager State Machine, Its purpose is to add state machine functionality to models
Stars: ✭ 16 (-73.77%)
Mutual labels:  laravel, generator
Coreui Free Laravel Admin Template
CoreUI Free Laravel Bootstrap Admin Template
Stars: ✭ 353 (+478.69%)
Mutual labels:  laravel, blade
Blade Zondicons
A package to easily make use of Zondicons in your Laravel Blade views.
Stars: ✭ 40 (-34.43%)
Mutual labels:  laravel, blade
Larawiz
Larawiz is a easy project scaffolder for Laravel
Stars: ✭ 28 (-54.1%)
Mutual labels:  laravel, generator
Laravel Blade X
Use custom HTML components in your Blade views
Stars: ✭ 538 (+781.97%)
Mutual labels:  laravel, blade
Laravel Graphql
GraphQL implementation with power of Laravel
Stars: ✭ 56 (-8.2%)
Mutual labels:  laravel, generator
Laravel Blade Javascript
A Blade directive to export variables to JavaScript
Stars: ✭ 485 (+695.08%)
Mutual labels:  laravel, blade
Artisan View
👀 Manage your views in Laravel projects through artisan
Stars: ✭ 708 (+1060.66%)
Mutual labels:  laravel, blade
Comments
Native comments for your Laravel application.
Stars: ✭ 390 (+539.34%)
Mutual labels:  laravel, blade
Laravel Blade Directives
A collection of nice Laravel Blade directives
Stars: ✭ 813 (+1232.79%)
Mutual labels:  laravel, blade
Api Generator
PHP-code generator for Laravel framework, with complete support of JSON-API data format
Stars: ✭ 244 (+300%)
Mutual labels:  laravel, generator
Themevel
Theme and asset management for laravel
Stars: ✭ 278 (+355.74%)
Mutual labels:  laravel, blade
Beautymail
Send beautiful HTML emails with Laravel
Stars: ✭ 923 (+1413.11%)
Mutual labels:  laravel, blade
Larawind
Larawind - Laravel 8.0+ Jetstream and Tailwind CSS Admin Theme
Stars: ✭ 55 (-9.84%)
Mutual labels:  laravel, blade

laravel-generator

Latest Stable Version Total Downloads License

中文文档

laravel-generator is administrative interface builder for laravel which can help you build code template you want as soon as possiable.

Requirements

  • PHP >= 7.0.0
  • Laravel >= 5

For GUI

laravel-generator

More Docs

Installation

Via Composer

composer require --dev foryoufeng/laravel-generator

If you do not run Laravel 5.5 (or higher), then add the service provider in config/app.php:

Foryoufeng\Generator\GeneratorServiceProvider::class

Then run the command to install the generator

php artisan generator:install

you may also need install the package barryvdh/laravel-ide-helper,if you do not install it

composer require --dev barryvdh/laravel-ide-helper

After run command you can find config file in config/generator.php,and now you can access your application http://yourhost/generator to use the laravel-generator

After the installation is complete, the project generates templates such as model, controllers and views by default. Other templates can be added or modified according to the actual needs of the project.

templates

laravel-generator

Usage

the generator.php doc

<?php

return [
    'name' => 'Laravel-generator',
    //the url to access
    'route'=>'generator',//you can change the access url if you do not like it
     //the rule  can be used by the field  , You can define the format of the fields you need.
      'rules'=>[
          'string',
          'email',
          'file',
          'numeric',
          'array',
          'alpha',
          'alpha_dash',
          'alpha_num',
          'date',
          'boolean',
          'distinct',
          'phone',
      ],
];

stub

You can define the format of the stub you need followed by my rules,such as

laravel-generator

more stub

https://github.com/foryoufeng/generator-templates

Notice

Only Chinese and English are supported by laravel generator now

Change log

Please see the changelog for more information on what has changed recently.

Contributing

Please see contributing.md for details and a todolist.

Security

If you discover any security related issues, please email [email protected]om instead of using the issue tracker.

License

MIT. Please see the license file for more information.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].