cesardanielhg / tablar-crud-generator

Simple CRUD generator Based on https://github.com/takielias/tablar

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Laravel Tablar Crud Generator

Latest Version on Packagist Total Downloads Contributors Forks Stargazers Issues MIT License LinkedIn

takielias



Laravel Tablar Admin Dashboard https://github.com/takielias/tablar

Inspired by ibex/crud-generator

  • Will create Model with Eloquent relations
  • Will create Controller with all resources
  • Will create views in Bootstrap 5.*

Requirements

Laravel >= 9.*
PHP >= 8.1

Installation

1 - Install

composer require takielias/tablar-crud-generator --dev

2- Publish the default package's config

php artisan vendor:publish --tag=crud

Usage

php artisan make:crud {table_name}

php artisan make:crud products

Add a route in web.php

Route::resource('products', 'ProductController');

Route name in plural slug case.

Options

  • Custom Route
php artisan make:crud {table_name} --route={route_name}
  • Custom Crud name: the name of the scaffold.
php artisan make:crud {table_name} --crud-name={crud_name}

# For example:
# php artisan make:crud emergencies —-crud-name=Emergencies
  • Custom language: specify the language that should be used by the inflector (french, norwegian-bokmal, portuguese, spanish or turkish)
php artisan make:crud {table_name} --lang={lang}
# For example:
# php artisan make:crud incidencies --lang=spanish

Example

tablar-crud-generator-light

tablar-crud-generator-dark

Contact

Taki Elias - @takiele - https://ebuz.xyz - taki.elias@gmail.com

takielias

About

Simple CRUD generator Based on https://github.com/takielias/tablar

License:MIT License


Languages

Language:PHP 100.0%