@extends('layouts.admin') @section('content') @section('content-actions')
@endsection


اضافة حساب تحويل بين الحسابات

@forelse($banks as $banks) @empty
No Data Available
@endforelse
# التاريخ اسم الحساب الرصيد سحب ايداع تعديل حذف
{{ $banks->id }} {{ $banks->created_at }} {{ $banks->bank}} {{ number_format($balance,0)}} @if($banks->id <> 1) سحب @endif @if($banks->id <> 1) ايداع @endif @if($banks->id > 4) تعديل @endif @if($banks->id > 4)
@method('DELETE') @csrf
@endif
@endsection