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