@extends('admin.layouts.master') @section('title', 'إدارة المنتجات') @section('css') @include('admin.layouts.css') @endsection @section('body')
| # | الاسم | العنوان | السعر الحالي | السعر القديم | الكمية | القسم | معرض الصور | تاريخ الإضافة | الإجراءات |
|---|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $product->getTranslation('name', 'ar') ?? 'غير متوفر' }} | @if($product->description) {{ Str::limit(strip_tags($product->description), 50) }} @else غير متوفر @endif | @if(is_numeric($product->price)) {{ number_format((float)$product->price, 2) }} ج.م @else غير متوفر @endif | @if($product->discount_percent) {{ number_format($product->price * (1 + $product->discount_percent / 100)) . ' ج.م' }} @else لا يوجد خصم @endif | {{ $product->stock ?? 'غير متوفر' }} | {{ optional($product->category)->getTranslation('name', 'ar') ?? 'غير محدد' }} |
@if($product->images->isNotEmpty())
|
{{ $product->created_at ? $product->created_at->format('Y-m-d') : 'غير محدد' }} | تعديل |