@extends('web_layouts.layout') {{-- title --}} @section('title','Products page') @section('content')

Products

@foreach($product as $pro)

{{$pro->title}}

{{$pro->description}}

{{$pro->price}}

@endforeach
@endsection