@extends('admin.layout.master')
@section('title', "طلبات سحب الرصيد")
@section('content')
{{-- @include('admin.layout.message')--}}
# |
إسم المرسل |
إسم البنك المحول لة |
رقم الحساب |
رقم الايبان |
قيمة المبلغ |
الحالة |
التحكم |
@foreach($rows as $row)
{{$i}} |
{!!$row->user->name !!} |
{!!$row->bank_name !!} |
{!!$row->account_number !!} |
{!!$row->iban_number !!} |
{!!$row->amount !!} |
@if($row->status == 'new')
جديد
@elseif($row->status == 'approved')
تم الموافقة عليه
@elseif($row->status == 'refused')
تم الرفض
@endif
|
@if($row->status == 'new')
@endif
|
@endforeach
@stop