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

Products List

Total Products: {{ $products->count() }}

@endsection @section('side_bar') @include('layouts/side_bar') @endsection @section('profile') @include('layouts/profile') @endsection @section('main_div')
@foreach($products as $product)
{{-- --}}
{{$product->name}}
{{$product->price}}
{{$product->quantity}}
{{$product->size}}
@endforeach
@endsection