@extends('admin.layouts') @section('title', 'Products') @section('header') @endsection @section('content')

Products

Add Product
@foreach($product as $products) @endforeach
S/N CATEGORY IMAGE PREVIEW TITLE DISCOUNT PRICE ACTION
{{$loop->iteration}} {{$products->cat->name}} preview image {{$products->title}} {{$products->discount}}% {{$products->price}} Edit
@endsection @section('footer') @endsection