@extends('backend.layouts.app') @section('content')

{{translate('All Pick-up Points')}}

{{ translate('Brands') }}
@foreach($pickup_points as $key => $pickup_point) @if ($pickup_point->staff != null && $pickup_point->staff->user != null) @else @endif @endforeach
# {{translate('Name')}} {{translate('Manager')}} {{translate('Location')}} {{translate('Pickup Station Contact')}} {{translate('Status')}} {{translate('Options')}}
{{ ($key+1) + ($pickup_points->currentPage() - 1)*$pickup_points->perPage() }} {{$pickup_point->getTranslation('name')}}{{$pickup_point->staff->user->name}}
{{ translate('No Manager') }}
{{$pickup_point->getTranslation('address')}} {{$pickup_point->phone}} @if ($pickup_point->pick_up_status != 1)
{{ translate('Close') }}
@else
{{ translate('Open') }}
@endif
{{ $pickup_points->appends(request()->input())->links() }}
@endsection @section('modal') @include('modals.delete_modal') @endsection @section('script') @endsection