@extends('store.master') @section('title', ' تفاصيل الوحدة: ' . $unit->title) @section('product-active', 'active') @section('content')
الاسم:

{{ $unit->title }}

السعر:

{{ number_format($unit->price, 2) }} $

الضريبة:

{{ $unit->taxValue }} %

المتجر:

{{ $unit->store->name }}

الفئة:

{{ $unit->category->name }}

المنتج:

{{ $unit->product->title }}

الكمية المتاحة:

{{ $unit->stock_quantity }}

تاريخ الإنتاج:

{{ $unit->pro_date }}

تاريخ الانتهاء:

{{ $unit->exp_date }}

الوقت المستغرق من:

{{ $unit->from_time }}

الوقت المستغرق الي:

{{ $unit->to_time }}

الخصم:

@if ($unit->is_percentage) {{ $unit->discount }} % @else {{ number_format($unit->discount, 2) }} $ @endif

الوصف:

{{ $unit->description }}

{{-- عرض جميع الصور الخاصة بالـ Unit --}}
@forelse ($unit_images as $image)
@empty

لا يوجد صور

@endforelse
{{$unit_images->links()}}
@endsection