@can('orders.show')
@endcan
@can('orders.edit')
@php $order = \App\Models\Order::find($id); @endphp
@if($order->order_status_id == 2)
@else
@endif
@endcan
@can('orders.destroy')
{!! Form::open(['route' => ['orders.destroy', $id], 'method' => 'delete']) !!}
{!! Form::button('', [
'type' => 'submit',
'class' => 'btn btn-link text-danger',
'onclick' => "return confirm('Are you sure?')"
]) !!}
{!! Form::close() !!}
@endcan