@extends('layouts.admin') @section('title', 'Merchant Details - Admin') @section('content')

Merchant Details

View complete merchant information and activity

{{ substr($merchant->name, 0, 1) }}

{{ $merchant->name }}

{{ $merchant->company_name }}

@if($merchant->email_verified_at) Active @else Inactive @endif Seller

Total Parcels

{{ $parcelStats['total'] }}

Pending

{{ $parcelStats['pending'] }}

Delivered

{{ $parcelStats['delivered'] }}

Returned

{{ $parcelStats['returned'] }}

Contact Information

Email

{{ $merchant->email }}

@if($merchant->phone)

Phone

{{ $merchant->phone }}

@endif

Company

{{ $merchant->company_name }}

Account Information

Member Since

{{ $merchant->created_at->format('M d, Y') }}

Last Updated

{{ $merchant->updated_at->format('M d, Y h:i A') }}

Account Type

{{ ucwords(str_replace('-', ' ', $merchant->role)) }}

Recent Parcels

View All →
@forelse($merchant->parcels as $parcel) @empty @endforelse
Tracking ID Status
{{ $parcel->tracking_id }} {{ $parcel->status }}

No parcels found for this merchant

@endsection