@extends('admin.layouts.app') @section('content') Products Add New Name Category Min Price Price Created At Actions @foreach ($data as $product) {{ $product->name }} {{ optional($product->category)->name ?? '-' }} {{ $product->min_price }} {{ $product->price }} {{ strtotime($product->created_at) }} {{ date('d/m/Y H:i:A', strtotime($product->created_at)) }} @csrf @method('DELETE') @endforeach @endsection @section('footer-js') @endsection