@extends('layout.mainlayout') @section('content')
Clear

@csrf
@csrf
@foreach($products as $p) @endforeach
Item Category Price Status Added On
@if($p->image) @else
@endif {{ $p->name }}
{{ $p->category_name ?? 'N/A' }} Tsh {{ number_format($p->price, 2) }} @if($p->status === 'available') Available @else Unavailable @endif {{ \Carbon\Carbon::parse($p->created_at)->format('d M Y, H:i') }}
@endsection