@php($page = 'accounts') {{env('APP_NAME')}} | View Account info {{-- --}} {{-- leaflet map --}}
@include("components.navbar")
@include("components.sidebar")

Account Information

{{-- Actions --}}
Account Name : {{$account->name}}
Account Code. : {{$account->code}}
Account Type : {{$account->type}}
Previous Balance : {{formatPrice($account->previous_balance)}}
Current Balance : {{formatPrice($account->current_balance)}}
Description :
{{$account->description}}

Status : {{$account->status}}
Initiated By : {{$account->user->fullname ?? ""}}
Initiated At : {{substr($account->created_at,0,10)}}
Edit {{-- Activate --}} @if($account->status == "Inactive")
@csrf @method('PUT')
@endif {{-- deactivate --}} @if(in_array($account->status, ['Active']) )
@csrf @method('PUT')
@endif {{-- DELETE (ALWAYS VISIBLE) --}}
@csrf @method('DELETE')
@include("components.footer")
{{-- --}} {{-- --}}