@extends('layouts.main') @push('nav_title') Product @endpush @section('page_title')

Products List

@endsection @section('main_div')
@foreach($products as $product) @endforeach
Image Name Qty Size Price Action
{{$product->name}} {{$product->quantity}} {{$product->size}} {{$product->price}} |
@endsection