@extends('layouts.app') @section('page_title', 'Courier Configuration') @section('page_subtitle', 'Manage multiple shipping integrations, API credentials, and review courier endpoints') @section('content')
Configured Couriers
Choose a courier to manage its API settings.
@foreach($partners as $p) @php $slug = strtolower(str_replace(' ', '', $p['name'])); @endphp @endforeach
@foreach($partners as $p) @php $slug = strtolower(str_replace(' ', '', $p['name'])); $isActive = (bool)$p['is_active']; $activeEnv = $p['active_environment'] ?? 'production'; @endphp @endforeach
{{-- ── COURIER APIS LIST MODAL ────────────────── --}} {{-- Hidden Form for Deleting APIs --}} {{-- ── WAREHOUSE MANAGEMENT MODALS ────────────────── --}} {{-- Add Warehouse Modal --}}

Add Warehouse

@csrf
{{-- Edit Warehouse Modal --}}

Edit Warehouse

@csrf @method('PUT')
{{-- Hidden Warehouse Delete Form --}} {{-- Warehouse Created Success Modal --}} @if (session('status') === 'warehouse-created')

Warehouse Created!

Your new pickup warehouse has been registered.

Generated Warehouse ID
{{ session('created_warehouse_id') }}
@endif @endsection @push('scripts') @endpush