@extends('layouts.app') @section('content')

Sticker Management

@if (session('status'))
{{ session('status') }}
@endif @if($tableMissing ?? false)

Stickers table is missing. Run php artisan migrate.

@else
@csrf

Bulk upload

@forelse($stickers as $sticker) @empty @endforelse
Preview Name Category Active Actions
{{ $sticker->name }} {{ $sticker->category }} {{ $sticker->is_active ? 'Yes' : 'No' }} Edit
@csrf @method('DELETE')
No stickers yet.
{{ $stickers->links() }} @endif
@endsection