@extends('admin/layouts/default') {{-- Page title --}} @section('title') GUI CRUD Builder @parent @stop {{-- page level styles --}} @section('header_styles') @stop {{-- Page content --}} @section('content')

GUI CRUD Generator

Laravel Generator Builder

@if(in_array(false, $permissions))

CRUD files may not generated because of following errors

@foreach($permissions as $key => $permission) @if(!$permission) Error: {{$key }} not writable
@endif @endforeach please fix errors and try again.
@endif @if(!$pendingMigrations)

You have pending migrations!

CRUD builder runs current migrations as well pending migrations.
uncheck "Migrate" option or proceed to migrate them aswell!
@endif
Model Details
  • Model Name: based on model name CRUD generates model, controller and table
  • Command Type: Select Command type scaffold Generator
  • Table Name: If you want custom table name change the table name.
Options
  • Options : Selectr options what you want.
  • Prefix : Prefix added to models, controllers, requests, repositories.
  • Icon : Icon displayed in Left menu.
  • Paginate : If you want change paginate enter paginate length.
Fields
  • If you need a field name First Name, type field name as first_name
  • Field Name: it is for table fileds, don't use any special characters.
  • DB Type: Select type of database
  • Validations : If you want add validation to fields, select validation type.
  • HTML Type : select HTML type.
  • Primary : If you want make a field as primary check it.
  • In Index : If you uncheck This checkbox it won't show the field in index page
Field Name DB Type Validations Html Type Primary Fillable In Form In Index Actions
@stop @section('footer_scripts') @stop