@extends('layout.layout') @push('links') @endpush {{-- Content --}} @section('content') @include('custom::component.reply-btn', ['url' => route('admin.rent.show', $rent->id)])
{{csrf_field()}} @if ($rent->status == 1) {{-- 審核狀態 --}} @php $status = collect(config('siterent.rent_status')); @endphp
@foreach ($status->only(0, 2)->toArray() as $key => $text)
@endforeach @if($errors->has('status')) @foreach ($errors->get('status') as $error)
{{$error}}
@endforeach @endif
{{-- 備註 --}}
@if($errors->has('remark')) @foreach ($errors->get('remark') as $error)
{{$error}}
@endforeach @endif
@elseif ($rent->status == 9) {{-- 排除日期 --}}
@foreach ($dates as $date) @endforeach 紅色:課程已取消;綠色:課程借用中
@endif
@endsection {{-- Script --}} @push('scripts') @endpush