@extends('layouts.master') @section('title') Delivery Locations @endsection @section('content') @component('components.breadcrumb') @slot('li_1') Administration @endslot @slot('title') Delivery Locations @endslot @endcomponent @if(session('success'))
{{ session('success') }}
@endif
Delivery Locations
New Location

Named delivery points used on purchase orders / GRNs.

@forelse($locations as $l) @empty @endforelse
NameStationAddressContactStatusActions
{{ $l->name }}@if($l->code){{ $l->code }}@endif {{ $l->station?->name ?? '—' }} {{ $l->address ?? '—' }}@if($l->parish), {{ $l->parish }}@endif {{ $l->contact_person ?? '—' }}@if($l->contact_number){{ $l->contact_number }}@endif @if($l->is_active)Active@elseInactive@endif Edit
@csrf
No delivery locations yet.
{{ $locations->links('pagination::bootstrap-5') }}
@endsection