@extends('layouts.app') @section('content')
| {{ __('Name') }} | {{ __('Image') }} | {{ __('Price') }} | {{ __('Category') }} | {{ __('Actions') }} |
|---|---|---|---|---|
| {{ app()->getLocale() == 'ar' ? $product-> label_ar : $product-> label_en }} |
@if(!empty($product-> img))
|
{{ number_format($product-> price,3) }} | {{ app()->getLocale() == 'ar' ? @$product-> category-> label_ar : @$product-> category-> label_en }} | {{ __('Edit') }} |
{{ __('No products found.') }}
@endif