@extends('admin.layouts.master') @section('title') إضافة الردود @endsection @section('css') @endsection @section('content-header')

إضافة الردود

@endsection @section('content')
@include('admin.listboot.ReplyList.create')
@include('admin.messages') @foreach($data->questionList as $row) @include('admin.listboot.ReplyList.edit') @include('admin.listboot.ReplyList.deleted') @endforeach
# اسم الرد عنوان الرد وصف الرد نوع الرد الرد العمليات
{{$loop->index+1}} {{$row->name}} {{$row->title}} {{$row->description}} {{$row->chat_boot_list->type ?? null}} {{findNameReplyChatBootList($row->id)->name ?? null}} @if(!App\Models\ChatBootReply::where('reply_boot_list_id',$row->id)->first()) @endif
@endsection @section('js') @endsection