@extends('backend.layouts.app') @section('title') 問い合わせ一覧 @endsection @section('content')

問い合わせ一覧

@include('backend.layouts.flash-message') {{ Form::open(['route'=>"backend.rental.question.index", 'method'=>'get']) }}

検索条件

{{ Form::close() }} {{-- $rental_questions->appends(['search_param'=>$search_param])->links('vendor.pagination.admin-pagination') --}}
@if($rental_questions->count() > 0) @foreach($rental_questions as $rental_question) @endforeach @else @endif
操作 受付日時 受付担当 ユーザー名 電話主名 電話番号 問い合わせカテゴリ 形状 折り返し 備考
詳細 id }}>削除
@csrf @method('delete')
{{ date('Y.m.d H:i', strtotime($rental_question->register_date)) }} {{ is_object($rental_question->user) ? $rental_question->user['name_kanji'] : '' }} {{ $rental_question->user_name }} {{ $rental_question->name }} {{ $rental_question->tel }} {{ config('const.rental_question_category.'.$rental_question->question_category) }} {{ $rental_question->shape }} {{ $rental_question->is_call_back == 1 ? "必須" : "" }} {{ $rental_question->note }}
データが存在しません。
{{ $rental_questions->appends(['search_param'=>$search_param])->links('vendor.pagination.admin-pagination') }}
@endsection @section('page_js') @endsection