@extends('layouts.versions.vertical-light')
@section('title')
إدارة الإجابات
@endsection
@section('css')
@endsection
@section('content')
@if(session('success'))
{{ session('success') }}
@endif
| # |
الإجابة (عربي) |
الإجابة (إنجليزي) |
الحالة |
الإجراءات |
@forelse($answers as $answer)
| {{ $answer->id }} |
{{ $answer->title['ar'] ?? '' }} |
{{ $answer->title['en'] ?? '' }} |
@if($answer->is_active)
نشط
@else
غير نشط
@endif
|
|
@empty
| لا توجد إجابات |
@endforelse
{{ $answers->links() }}
@endsection
@section('script')
@endsection