@extends('backend.layouts.layout-2') @section('page-title', 'الطلب') @section('page-heading', 'الطلب') @section('styles') @parent @endsection @section('scripts') @parent @endsection @section('content') @if($edit) {!! Form::open(['route' => ['orders.update',$request->id], 'method' => 'PUT','files' => true, 'id' => 'page-form']) !!} @else {!! Form::open(['route' => 'orders.store', 'files' => true, 'id' => 'page-form']) !!} @endif
@lang('app.page_details')
رقم الطلب {{ $request->id }}
اسم المستخدم {{ $request->user->first_name }}
الاجمالى {{ $request->total }}
@if(count($order_items)) @foreach($order_items as $item) @if($item->type == 'ashom') @elseif($item->type == 'sadakat') @else @endif @endforeach
اسم العنصر النوع الكمية السعر الاجمالى
{{$item->item_name}} اسهم{{$item->item_name}} صدقةزكاه زكاه{{$item->quantity}} {{$item->price}} {{$item->price*$item->quantity}}
الحوالة
@endif
{!! Form::close() !!} @stop