@extends('layouts.main') @section('title') {{ __('Reviews') }} @endsection @section('page-main-title') {{ __('Reviews') }} @endsection @section('content') {{-- Filter Status --}} {{ __('Select Status') }} {{ __('Pending') }} {{ __('Approved') }} {{-- Filter Property --}} {{ __('Select Property') }} @if (isset($properties)) @foreach ($properties as $property) {{ $property->title }} @endforeach @endif {{ __('Title') }} {{ __('Customer Name') }} {{ __('Property') }} {{ __('Rating') }} {{ __('Status') }} {{ __('Action') }} {{-- Review Details Modal --}} {{ __('Review Details') }} {{ __('Customer Name') }} {{ __('Property') }} {{ __('Rating') }} {{ __('Status') }} {{ __('Title') }} {{ __('Comment') }} {{ __('Created At') }} {{-- Change Review Status Modal --}} {{ __('Change Status') }} {{ csrf_field() }} {!! Form::hidden('id', "", ['id' => 'edit-review-status-id']) !!} {{ Form::label('', __('Status'), ['class' => 'form-label col-12']) }} {{-- Approve --}} {{ Form::radio('is_approved', '1', null, ['class' => 'form-check-input review-status', 'id' => 'status-approve', 'required' => true]) }} {{ Form::label('status-approve', __('Approve'), ['class' => 'form-check-label']) }} {{-- Reject --}} {{ Form::radio('is_approved', '0', null, ['class' => 'form-check-input review-status', 'id' => 'status-reject', 'required' => true]) }} {{ Form::label('status-reject', __('Reject'), ['class' => 'form-check-label']) }} @endsection @section('script') @endsection