BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
.
/
app.imagivibe.com
/
resources
/
views
/
default
/
panel
/
admin
/
frontend
/
tools
📤 Upload
📝 New File
📁 New Folder
Close
Editing: index.blade.php
@extends('panel.layout.app', ['disable_tblr' => true]) @section('title', __('Tools Section')) @section('titlebar_actions') <x-button class="mb-4" variant="primary" onclick="{{ $app_is_demo ? 'return toastr.info(\'This feature is disabled in Demo version.\')' : '' }}" href="{{ $app_is_demo ? '#' : route('dashboard.admin.frontend.tools.createOrUpdate') }}" > <x-tabler-plus class="size-4" /> {{ __('Add New') }} </x-button> @endsection @section('content') <div class="py-10"> <x-table> <x-slot:head> <tr> <th> {{ __('Image') }} </th> <th> {{ __('Title') }} </th> <th> {{ __('Description') }} </th> <th> {{ __('Created At') }} </th> <th class="text-end"> {{ __('Actions') }} </th> </tr> </x-slot:head> <x-slot:body> @foreach ($items as $entry) <tr> <td> <img class="size-20 aspect-square rounded-lg object-cover object-center" src="/{{ custom_theme_url($entry->image) }}" alt="{{ $entry->title }}" > </td> <td> {{ $entry->title }} </td> <td> {{ $entry->description }} </td> <td> <p class="m-0"> {{ date('j.n.Y', strtotime($entry->created_at)) }} <span class="block opacity-60"> {{ date('H:i:s', strtotime($entry->created_at)) }} </span> </p> </td> <td class="whitespace-nowrap text-end"> @if ($app_is_demo) <x-button class="size-9" variant="ghost-shadow" size="none" onclick="return toastr.info('This feature is disabled in Demo version.')" title="{{ __('Edit') }}" > <x-tabler-pencil class="size-4" /> </x-button> <x-button class="size-9" variant="ghost-shadow" hover-variant="danger" size="none" onclick="return toastr.info('This feature is disabled in Demo version.')" title="{{ __('Delete') }}" > <x-tabler-x class="size-4" /> </x-button> @else <x-button class="size-9" variant="ghost-shadow" size="none" href="{{ route('dashboard.admin.frontend.tools.createOrUpdate', $entry->id) }}" title="{{ __('Edit') }}" > <x-tabler-pencil class="size-4" /> </x-button> <x-button class="size-9" variant="ghost-shadow" hover-variant="danger" size="none" onclick="return confirm('Are you sure?');" href="{{ route('dashboard.admin.frontend.tools.delete', $entry->id) }}" title="{{ __('Delete') }}" > <x-tabler-x class="size-4" /> </x-button> @endif </td> </tr> @endforeach </x-slot:body> </x-table> </div> @endsection @push('script') <script src="{{ custom_theme_url('/assets/js/panel/faq.js') }}"></script> @endpush
Save
Cancel