@extends('admin.layout') @section('content')

{{ translate('Pickup Points') }}

@foreach ($pickupPoints as $key => $point) @endforeach
#
{{ translate('Title') }} {{ translate('Country') }} {{ translate('Province') }} {{ translate('city') }} {{ translate('Options') }}
{{ $key + 1 + ($pickupPoints->currentPage() - 1) * $pickupPoints->perPage() }}
{{ $point->title }} {{ $point->country->getTranslation('title') }} {{ $point->province->getTranslation('title') }} {{ $point->city->getTranslation('title') }}
{{ $pickupPoints->links() }}
@endsection @section('modal') @endsection @section('script') @endsection