@extends('layouts.admin-layout')
@section('title', 'All Products ')
@section('content')
Product Section
| S.N. |
Product Name |
Product Price |
Image |
Action |
@foreach ($get_products as $product)
| {{ $loop->iteration }} |
{{ $product->name ?: '' }} |
{{ $product->price ?: '' }} |
|
|
@endforeach
@endsection
@section('script')
@endsection