@extends('admin.layouts.master') @section('title') @endsection @section('css') @include('admin.layouts.css') @endsection @section('body')
@foreach($products as $product) @endforeach
# الصورة الاسم العنوان السعر الحالي السعر القديم الكمية القسم معرض الصور كود المنتج حالة المنتج في المتجر حالة المنتج في النشر تاريخ الاضافه الإجراءات
{{ $loop->iteration }} @if (isset($product->image) && file_exists(public_path('storage/' . $product->image))) {{ implode(' ', array_slice(explode(' ', $product->getTranslation('name', 'ar')), 0, 5)) }} @else No image available @endif @if (isset($product->name) && $product->name) {{ $product->getTranslation('name','ar') }} @else Unavailable @endif @isset($product->alt_title) {{ implode(' ', array_slice(explode(' ', $product->alt_title), 0, 5)) }} @else Unavailable @endif {{ $product->new_price ?? 'Not Available' }} {{ $product->old_price ?? 'Not Available' }} {{ $product->num_stock ?? 'Not Available' }} @isset($product->category) {{ implode(' ', array_slice(explode(' ', $product->category->getTranslation('name', 'ar')), 0, 5)) }} @else No category @endif @if($product->images->isNotEmpty()) Product Image @else Not Available @endif {{ $product->code ?? 'No code' }} {{ $product->status->name ?? 'لا يوجد حاله' }} {{ $product->active->name ?? 'يوجد مشكله ' }} {{ $product->created_at->format('Y-m-d') }} تعديل
@endsection @section('js') @include('admin.layouts.js') @endsection