PHP Classes

File: src/stubs/views/create.blade.php.stub

Recommend this page to a friend!
  Classes of TJ Webb   Laravel CRUD Generator   src/stubs/views/create.blade.php.stub   Download  
File: src/stubs/views/create.blade.php.stub
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel CRUD Generator
Generate MVC classes for any Laravel model
Author: By
Last change:
Date: 4 years ago
Size: 660 bytes
 

Contents

Class file image Download
@extends('crud-layout') @section('header') <div class="row"> <div class="col-lg-12 margin-tb"> <div class="pull-left"> <h2>Create {MODEL}</h2> </div> <div class="pull-right"> <a class="btn btn-primary" href="{{ route('{ROUTES}.index') }}"> Back</a> </div> </div> </div> @endsection @section('content') <form action="{{ route('{ROUTES}.store') }}" method="POST"> @csrf <div class="row"> {CREATE_COLUMNS} <div class="col-xs-12 col-sm-12 col-md-12 text-center"> <button type="submit" class="btn btn-primary">Submit</button> </div> </div> </form> @endsection