@extends('layouts/app') @section('title') Produtos @endsection @section('content')
@if (count($products) > 0)
@foreach ($products as $product)
{{$product->title}}

{{$product->title}}

{{$product->description}}

€{{$product->price}}

@endforeach
{{$products->links()}}
@else

No products found :(

Novo Produto @endif
@endsection