@extends('layouts.app') @section('title', 'إدارة المنتجات') @if (!Auth::check()) @endif @section('content')
| # | صورة المنتج | اسم المنتج | السعر القديم | السعر الجديد | الفئة | الحالة | الإجراءات |
|---|---|---|---|---|---|---|---|
| #{{ $item->id }} |
|
{{ $item->item_name }} | @if($item->old_price) {{ number_format($item->old_price) }} د.ع @else - @endif | {{ number_format($item->new_price) }} د.ع | {{ $item->category->category_name }} |
@if($item->trend)
رائج
@endif
@if($item->new)
جديد
@endif
|