Rename Admin views directory, add some functions on models
This commit is contained in:
18
resources/views/Admin/Shop/Invoices/edit.blade.php
Normal file
18
resources/views/Admin/Shop/Invoices/edit.blade.php
Normal file
@@ -0,0 +1,18 @@
|
||||
@extends('layout.index', [
|
||||
'title' => 'Factures',
|
||||
'subtitle' => 'Edition d\'une facture',
|
||||
'breadcrumb' => ['Articles']
|
||||
])
|
||||
|
||||
@include('boilerplate::load.fileinput')
|
||||
|
||||
@section('content')
|
||||
|
||||
{{ Form::open(['route' => 'Admin.Shop.Invoices.update', 'id' => 'invoice-form', 'autocomplete' => 'off']) }}
|
||||
<input type="hidden" name="id" value="{{ $invoice['id'] }}">
|
||||
@include('Admin.Shop.Invoices.form')
|
||||
@include('components.button-save')
|
||||
|
||||
</form>
|
||||
|
||||
@endsection
|
||||
Reference in New Issue
Block a user