@extends('layout.backend.main') @section('page_content')
@forelse ($buyers as $buyer) @empty @endforelse
Photo First Name Last Name Email Contact Number Bank Acconut Country Shipping address Billings Address Action
{{ $buyer->first_name }} {{ $buyer->last_name }} {{ $buyer->email }} {{ $buyer->phone }} {{ $buyer->bankAccount->name ?? 'N/A' }} {{ $buyer->country }} {{ $buyer->shipping_address }} {{ $buyer->billing_address }}
{{--
--}} @csrf @method('DELETE')
No buyers found.
{{ $buyers->links('vendor.pagination.custom') }}
@endsection