@extends('admin.admin')
@section('title')
Product List
@endsection
@section('content')
| SL |
Name |
Category |
Brand |
Price |
Action |
@foreach ($products as $sl => $product)
| {{ $sl + 1 }} |
{{ $product->name }} |
{{ $product?->category?->name ?? '' }} |
{{ $product?->brand?->name ?? '' }} |
{{ $product->price }} TK |
gallery
{{-- stock --}}
|
@endforeach
@endsection