@extends('layouts.dashboardnew') @section('content')
Filtro por producto
@foreach ($productos as $item)
{{$item->title}}
{{$item->title}}

@if($item->estrellas > 0) @for($i=1; $i<=$item->estrellas; $i++) @endfor @endif

ID: {{$item->id}}

Producto creado: {{ date('d-m-Y', strtotime($item->created_at)) }}

@endforeach {{ $productos->appends(['tipo' => request()->tipo, 'producto' => request()->producto])->links('tienda.paginate.index') }}
@endsection