@php($page = 'customers') {{env('APP_NAME')}} | View Customer {{-- --}} {{-- @livewireStyles --}}
@include("components.navbar")
@include("components.sidebar")

Customer Information

Name : {{$customer->name}}
Type : {{$customer->type}}
Phone Number : {{$customer->phone_number}}
Phone Number 2 : {{$customer->phone_number2}}
Email : {{$customer->email}}
State : {{$customer->state}}
LGA : {{$customer->lga}}
Address : {{$customer->address}}

Status : {{$customer->status}}
Created By : {{$customer->createdBy->fullname ?? ""}}
Created At : {{$customer->created_at}}
Updated By : {{$customer->updatedBy->fullname ?? ""}}
Updated At : {{$customer->updated_at}}
Edit Orders Payments Activities @if($customer->status == "Inactive") Activate @else Deactivate @endif Delete
@include("components.footer")
{{-- --}} {{-- --}}