@extends('layouts.app') @section('title', 'محصولات') @section('content')

☕ محصولات

➕ Create
{{-- Desktop Table --}} {{-- Mobile Cards --}}
@forelse($products as $product)
@if($product->image) {{ $product->name }} @endif

{{ $product->name }}

{{ Str::limit($product->description, 80) }}

{{ number_format($product->price, 2) }} تومان

@if($product->is_disabled) Disabled @else Active @endif

Edit
@csrf @method('PATCH')
@csrf @method('DELETE')
@empty

محصولی وجود ندارد.

@endforelse
@endsection