@extends('frontend.layout.app') @section('content')
@foreach ($products as $product)

{{$product->name}}

Rs. {{$product->price}}

{{$product->getCategory->name}}

@endforeach
@endsection