Add New
{!! Form::open(['method' => 'GET', 'url' => '/logistic/expense', 'class' => 'navbar-form navbar-right', 'role' => 'search']) !!}
{!! Form::close() !!}
ID | Booking No | Supplier Id | Performa Inovice | Actions |
@foreach($expense as $item)
{{ $item->id }} |
{{ $item->booking_no }} | {{ $item->supplier_id }} | {{ $item->performa_inovice }} |
{!! Form::open([
'method'=>'DELETE',
'url' => ['/logistic/expense', $item->id],
'style' => 'display:inline'
]) !!}
{!! Form::button(' Delete', array(
'type' => 'submit',
'class' => 'btn btn-danger btn-xs',
'title' => 'Delete Expense',
'onclick'=>'return confirm("Confirm delete?")'
)) !!}
{!! Form::close() !!}
|
@endforeach