@extends('layouts.app') @section('title', 'Mis enlaces') @section('content') {{-- Barra superior --}}

{{ $links->total() }} {{ Str::plural('enlace', $links->total()) }} guardado{{ $links->total() !== 1 ? 's' : '' }}.

Guardar enlace
{{-- Filtros --}}
Filtrar @if (request()->hasAny(['proyecto', 'carpeta', 'estado', 'favoritos'])) Limpiar @endif
{{-- Lista --}} @if ($links->isEmpty())

No tienes enlaces guardados.

Guarda el primero para empezar tu biblioteca.

Guardar enlace
@else
@foreach ($links as $link) @include('enlaces._card', ['link' => $link]) @endforeach
{{ $links->links() }}
@endif @endsection