@can('view', $order)
@lang('global.show')
@endcan
@can('update', $order)
@if ($order->status->title === 'pending')
@lang('global.preparing')
@endif
@if ($order->status->title === 'preparing')
@lang('global.done')
@endif
@if ($order->status->title === 'pending' || ($order->status->title === 'preparing' && !$order->restaurant->infrasys_code))
@lang('global.rejected')
@endif
@endcan