@extends('layouts.admin') @section('title', 'Manual Courier') @section('breadcrumb', 'Manual Courier') @section('content')

Manual Courier

Manage courier services for manual and bulk order shipping.

{{ $editCourier ? 'Edit Courier' : 'Add Courier' }}

{{ $editCourier ? 'Update the courier details below.' : 'Add a new courier service for manual shipping.' }}

@csrf @if($editCourier) @method('PUT') @endif
@error('courier_service')

{{ $message }}

@enderror
@error('name')

{{ $message }}

@enderror

Tracking page URL of the courier service

@error('tracking_url')

{{ $message }}

@enderror
@if($editCourier) Cancel @endif

@forelse($couriers as $courier) @empty @endforelse
ID Courier Service Name Tracking URL Status Created Actions
{{ $courier->id }} {{ $courier->courier_service }} {{ $courier->name }} @if($courier->tracking_url) {{ $courier->tracking_url }} @else - @endif @if($courier->is_active) Active @else Inactive @endif {{ $courier->created_at->ist()->format('M d, Y') }}
{{ $courier->created_at->ist()->format('h:i A') }}
@csrf @method('PATCH')
@csrf @method('DELETE')
No courier services found. Add your first courier service above.
{{ $couriers->links() }}
@endsection