@extends('layouts.app') @section('content') @include('partials.navbar')
{{-- SEARCH --}}
{{-- CATEGORY (DYNAMIC) --}}
{{-- SORT --}}
{{-- BUTTONS --}}
Reset
{{-- HERO --}} @if ($featured)
{{ $featured->brand }}

{{ $featured->title }}

{{ $featured->short_description }}

MORE DETAILS
@endif {{-- GRID --}}
@foreach ($gadgets as $item)
{{ $item->brand }}
{{ $item->title }}
{{--

{{ Str::limit($item->short_description, 60) }}

--}} {{ $item->user->name ?? 'Unknown Author' }} {{-- ${{ number_format($item->price) }} --}}
@endforeach


@endsection