@extends('layouts.default1400-profile', ['title' => 'فاکتور ها']) @section('content')
@if(count($carts) == 0)
اطلاعاتی برای نمایش دادن یافت نشد!
@else
@foreach($carts as $item)
شماره فاکتور تاریخ
{{ $item->official_invoice_number }} {{ $item->withdraw != null ? $item->withdraw : ( GetShamsiDateWithoutTime( is_null($item->print_at) ? $item->order_at : $item->print_at )) }}
@if($item->off_invoice_publish == true) چاپ فاکتور @endif @if($item->off_credential_publish == true) اعلامیه بستانکاری @endif @if($item->off_return_publish == true) برگشت از فروش @endif
@endforeach
@endif
@stop