@extends('layouts.app') @section('title', 'Gerenciar Banners - Link na Bio') @section('content')
{{ __('Gerenciar Banners') }} @if($banners->count() < 3) Novo Banner @endif
@if($banners->count() >= 3)
Você atingiu o limite máximo de 3 banners.
@endif @if($banners->count() > 0)
Arraste e solte os itens para reordenar os banners.
    @foreach($banners as $banner)
  • {{ $banner->title }}
    {{ $banner->title ?: 'Banner sem título' }}
    @if($banner->url)

    {{ $banner->url }}

    @endif @if(!$banner->is_active) Inativo @endif
    @csrf @method('DELETE')
  • @endforeach
@else

Você ainda não tem banners cadastrados.

Clique no botão "Novo Banner" para começar.

@endif
@endsection @section('scripts') @if($banners->count() > 0) @endif @endsection