@extends('panel.layouts.master') @section('title', 'فاکتور پرداخت') @section('content') @php $header = 'false'; $footer = 'false'; $sidebar = 'false'; @endphp

وضعیت پرداخت


{{--

بعد از 3 ثانیه منتقل خواهید شد...

Loading...
--}}
نام و نام خانوادگی
{{ $payment->user->name }}
کد ارجاع
{{ $payment->reference_code }}
کد پستی
{{ $payment->post_code }}
شماره تماس
{{ $payment->phone }}
آدرس
{{ $payment->address }}
بابت
{{ App\Models\Payment::TYPE[$payment->type] }}
محصولات
@foreach (json_decode($payment->data) as $key => $item) @endforeach
# نام محصول رنگ سایز تعداد
{{ ++$key }} {{ App\Models\Product::find($item->product_id)->title }} @if($item->color) @if($item->color == 'special') رنگ خاص @else   @endif @else بدون رنگ @endif @if($item->size) @if($item->size == 0) فری سایز @else {{ $item->size }} @endif @else بدون سایز @endif {{ $item->count }}
مبلغ
{{ number_format($payment->amount) }} تومان
وضعیت
{{ $payment->status == 'success' ? 'موفق' : 'نا موفق' }}
@endsection @section('script') {{-- --}} @endsection