@extends('admin.layouts.app') @section('content')

Products

Add New
@foreach ($data as $product) @endforeach
Name Category Min Price Price Created At Actions
{{ $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')
@endsection @section('footer-js') @endsection