@extends('admin.layout.app') @section('style') @endsection @section('content')
التحويلات نطره عامة
@foreach($transactions as $item) @endforeach
# ولي الامر الاسم من بنك الي بنك الايبان الصورة المبلغ تاكيد الدفع الطلب عرض حذف
{{$item->id}} {{ $item->Parent->name ?? '' }} {{ $item->name ?? '' }} {{ $item->from_bank ?? '' }} {{ $item->to_bank ?? '' }} {{ $item->iban ?? '' }} {{ $item->money ?? '' }} @if(!$item->Order()->first()) لا يوجد طلب لهذا التحويل @elseif($item->Order()->first() && $item->Order->paied == '1') تم الدفع @else {!!Form::model($item , ['url' => ['/dashboard/transactions/'.$item->id] , 'method' => 'PATCH','files'=>true]) !!} {!!Form::close() !!} @endif عرض الطلب عرض حذف
@endsection @section('script') @endsection