@extends('panel.layout.app', ['disable_tblr' => true])
@section('title', __('Content Box Section'))
@section('titlebar_actions')
@endsection
@section('content')
{{ __('Emoji') }}
|
{{ __('Title') }}
|
{{ __('Description') }}
|
{{ __('Created At') }}
|
{{ __('Actions') }}
|
@foreach ($items as $item)
{!! $item->emoji !!}
|
{{ $item->title }}
|
{{ $item->description }}
|
{{ date('j.n.Y', strtotime($item->created_at)) }}
{{ date('H:i:s', strtotime($item->created_at)) }}
|
@if ($app_is_demo)
@else
@endif
|
@endforeach
@endsection
@push('script')
@endpush