@extends('SuperAdmin.layout.layout') @section('title', 'Custom Emoji & GIF Management') @section('body')

Custom Emoji & GIF Management

@if(session('success')) @endif @if(session('error')) @endif
@forelse($emojis as $emoji) @empty @endforelse
ID Name Type Content Status Created By Actions
{{ $emoji->id }} {{ $emoji->name }} {{ ucfirst($emoji->type) }} @if($emoji->type === 'emoji') {{ $emoji->emoji_text }} @else {{ $emoji->name }} @endif {{ $emoji->is_active ? 'Active' : 'Inactive' }} {{ $emoji->creator_name }}
No emojis or GIFs found
@endsection