|
|
@ -3,18 +3,16 @@ |
|
|
@section('title', 'Entry Invoice') |
|
|
@section('title', 'Entry Invoice') |
|
|
|
|
|
|
|
|
@section('content') |
|
|
@section('content') |
|
|
|
|
|
<h1 class="page-header"> |
|
|
<div class="pull-right"> |
|
|
<div class="pull-right"> |
|
|
{!! FormField::formButton( |
|
|
|
|
|
['route' => 'invoices.add'], |
|
|
|
|
|
trans('invoice.create'), |
|
|
|
|
|
[ |
|
|
|
|
|
|
|
|
{!! FormField::formButton(['route' => 'invoices.add'], trans('invoice.create'), [ |
|
|
'class' => 'btn btn-default', |
|
|
'class' => 'btn btn-default', |
|
|
'name' => 'create-invoice-draft', |
|
|
'name' => 'create-invoice-draft', |
|
|
'id' => 'invoice-draft-create-button' |
|
|
'id' => 'invoice-draft-create-button' |
|
|
] |
|
|
|
|
|
) !!} |
|
|
|
|
|
|
|
|
] ) !!} |
|
|
</div> |
|
|
</div> |
|
|
<h1 class="page-header">{{ trans('invoice.list') }}</h1> |
|
|
|
|
|
|
|
|
{{ trans('invoice.list') }} |
|
|
|
|
|
</h1> |
|
|
|
|
|
|
|
|
<?php use Facades\App\Services\InvoiceDrafts\InvoiceDraftCollection; ?>
|
|
|
<?php use Facades\App\Services\InvoiceDrafts\InvoiceDraftCollection; ?>
|
|
|
@includeWhen(! InvoiceDraftCollection::isEmpty(), 'invoices.partials.invoice-draft-tabs') |
|
|
@includeWhen(! InvoiceDraftCollection::isEmpty(), 'invoices.partials.invoice-draft-tabs') |
|
|
|