@can('view', $order)
@lang('global.show')
@endcan
@can('update', $order)
@if ($order->status->title === 'pending')
@lang('global.accept')
@endif
@if ($order->status->title === 'processing')
@lang('global.done')
@endif
@if (in_array($order->status->title,['pending','processing']))
@lang('global.rejected')
@endif
@endcan