@extends('dashboard.app') @section('page_title', 'Emoji Catalog') @section('page_subtitle', 'Manage emojis in database, then publish one frozen JSON snapshot when ready.') @section('dashboard_content') @if (session('status'))
| ID | Emoji | Slug | Name | Category | Updated | Actions |
|---|---|---|---|---|---|---|
| #{{ $item->emoji_id }} | {{ $item->emoji ?: '⬚' }} | {{ $item->slug }} | {{ $item->name }} | {{ $item->category }} | {{ $item->updated_at ? \Illuminate\Support\Carbon::parse($item->updated_at)->format('Y-m-d H:i') : '—' }} | |
| @if (($filters['q'] ?? '') !== '') No rows match "{{ $filters['q'] }}". @else No catalog rows in database. @endif | ||||||
| Version | File | Updated | Status | Action |
|---|---|---|---|---|
| {{ $snapshot['version'] }} | {{ $snapshot['name'] }} | {{ $snapshot['modified_at'] > 0 ? \Illuminate\Support\Carbon::createFromTimestamp($snapshot['modified_at'])->format('Y-m-d H:i') : '—' }} | @if ($snapshot['is_active']) Active @else Inactive @endif | @if (!$snapshot['is_active']) @endif |
| No snapshot files found yet. Publish once to create versioned snapshots. | ||||