@extends('layouts.console') @section('title','予約リクエスト')@section('console','店舗管理')@section('heading','予約リクエスト') @section('who', $member->name.' 様')@section('logout', route('member.logout')) @section('nav')@include('member._nav')@endsection @section('content')

予約リクエスト一覧

@forelse($reservations as $rv) @empty @endforelse
受信店舗お名前連絡先希望/要望状態操作
{{ $rv->created_at?->format('Y-m-d H:i') }} {{ optional($rv->shop)->name }} {{ $rv->name }} {{ $rv->tel }}
{{ $rv->email }}
{{ $rv->desired_at }}
{{ $rv->note }}
{{ ['pending'=>'未対応','handled'=>'対応済','cancelled'=>'キャンセル'][$rv->status] ?? $rv->status }} @if($rv->status!=='handled')
@csrf
@endif @if($rv->status!=='cancelled')
@csrf
@endif @if($rv->status!=='pending')
@csrf
@endif
予約リクエストはまだありません。
{{ $reservations->links() }}
@endsection