@extends('admin.admin') @section('title') Product List @endsection @section('content')

All Products

@foreach ($products as $sl => $product) @endforeach
SL Name Category Brand Price Action
{{ $sl + 1 }} {{ $product->name }} {{ $product?->category?->name ?? '' }} {{ $product?->brand?->name ?? '' }} {{ $product->price }} TK gallery {{-- stock --}}
@endsection