@extends("layout.app") @section("content")
@include("customers.aside")
@if (session()->has("success"))
  • {{session()->get("success")}}
@endif

اجهزتي المستعملة المعروضه للبيع

@forelse($used_items as $used_item) @empty @endforelse
الجهاز الرقم التسلسلي الحاله تاريخ الإضافة السعر
@if($used_item->is_active) id)}}"> {{$used_item->name ?? $used_item->category->name}} @else {{$used_item->name ?? $used_item->category->name}} @endif {{$used_item->serial_number}} @if($used_item->status=="pending" && !$used_item->is_sold) @php $status = "بانتظار التأكيد"; $color = "#e47600"; @endphp @elseif($used_item->status=="pending-receive" && !$used_item->is_sold) @php $status = "بإنتظار إستلام الجهاز"; $color = "#e47600"; @endphp @elseif($used_item->status=="rejected" && !$used_item->is_sold) @php $status = "لم تتم الموافقة"; $color = "#c50103"; @endphp @elseif($used_item->status=="waiting" && !$used_item->is_sold) @php $status = "بانتظار التعديل والموافقة"; $color = "#c50103"; @endphp @elseif($used_item->status=="checking" && !$used_item->is_sold) @php $status = "تحت الفحص"; $color = "#c50103"; @endphp @elseif($used_item->status=="approved") @php $status = "بإنتظار النشر"; $color = "#e47600"; @endphp @elseif($used_item->status=="published" ) @php $status = "تم النشر - بانتظار البيع"; $color = "#21a200"; @endphp @elseif($used_item->status=="sold") @php $status = "تم البيع"; $color = "#21a200"; @endphp @endif {{$status}} {{$used_item->created_at->format("Y-m-d")}} {{$used_item->price ? $used_item->price : ($used_item->suggested_price ? $used_item->suggested_price : "جاري التأكيد")}} @if($used_item->customer_notes) ملاحظات ايهاوس @endif

لا يوجد اجهزة معروضه للبيع

إضغط هنا لإضافة جهاز

@endsection