@extends('backoffice.dashboard') @section('content') @if(Auth::check())
{{-- Header --}}

قوالب نتائج المناظرة

{{ $concours->titre_ar }}
{{-- عودة --}} إنشاء قالب جديد
{{-- Body --}}
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif @if($templates->isEmpty())

لا توجد قوالب نتائج حتى الآن. اضغط على إنشاء قالب جديد للبدء.

@else
{{-- --}} @foreach($templates as $template) {{-- --}} @endforeach
اسم القالب عدد الحقول المختارةيحتوي على رأس يحتوي على تذييلالتفعيل تاريخ الإنشاء الإجراءات
{{ $template->template_name }} @if(!empty($template->is_published)) منشور @endif {{ count($template->selected_attributes ?? []) }} @if($template->header_image_path || $template->header_pdf_path) نعم @else لا @endif @if($template->footer_image_path || $template->footer_pdf_path) نعم @else لا @endif
@csrf
{{ $template->created_at->format('Y-m-d H:i') }}
@csrf @method('DELETE')
إجمالي: {{ $templates->total() }}
{{ $templates->links('pagination::bootstrap-5') }}
@endif
@else @endif @endsection