@extends('layouts.app') @push('after-css') @endpush @section('content')

CRUD Generator


{{ csrf_field() }}

Provide a class name (singular and first letter caps) for the CRUD Model

@if ($errors->has('crud_name')) {{ $errors->first('crud_name') }} @endif

Provide a directory name (singular and lowercase) for the CRUD Views

@if ($errors->has('view_path')) {{ $errors->first('view_path') }} @endif

Provide a group name (Namespace) for the CRUD Controller

@if ($errors->has('controller_namespace')) {{ $errors->first('controller_namespace') }} @endif

Provide a url prefix (URL Friendly) for the CRUD Routes

@if ($errors->has('route_group')) {{ $errors->first('route_group') }} @endif
Menu
@if ($errors->has('route')) {{ $errors->first('route') }} @endif
{{----}} {{----}} {{----}} @if ($errors->has('menu_icon')) {{ $errors->first('menu_icon') }} @endif
Schema

Note: Id (Primary key and Auto increment), created_at, and updated at will be added by default.

@if ($errors->has('fields')) {{ $errors->first('fields') }} @endif Advance

List relationships as method#relationType#Model;

@if ($errors->has('relationships')) {{ $errors->first('relationships') }} @endif
@if ($errors->has('form_helper')) {{ $errors->first('form_helper') }} @endif

@include('layouts.admin.footer')
@endsection @push('js') @endpush