@extends('backend.admin-master') @section('style') @include('backend.partials.datatable.style-enqueue') @endsection @section('site-title') {{__('All Appointments Reviews')}} @endsection @section('content')

{{__('All Appointments Reviews')}}

@foreach($all_reviews as $data) @endforeach
{{__('ID')}} {{__('Appointment')}} {{__('User')}} {{__('Rating')}} {{__('Message')}} {{__('Action')}}
{{$data->id}} {{optional($data->appointment)->title ?? __('untitled')}} {{optional($data->user)->name ?? __('Anonymous')}} @for( $i =1; $i <= $data->ratings; $i++ ) @endfor {{$data->message}}
@endsection @section('script') @include('backend.partials.datatable.script-enqueue') @include('backend.partials.bulk-action',['action' =>route('admin.appointment.bulk.action') ]) @endsection