@extends('master.app') @section('title', 'Bank Account Details') @section('body')
Bank Account Details
Name {{ $bankerAccount->name }}
Phone {{ $bankerAccount->phone }}
Address {{ $bankerAccount->address }}
Date {{ $bankerAccount->date }}
Status {{ $bankerAccount->status == 1 ? 'Active' : 'Inactive' }}
@csrf @method('DELETE')
@endsection