| 場地 |
{{$rent->site_name}}
|
| 區域 |
@foreach ($areas as $area)
{{$area->name}}
@endforeach
|
| 日期 |
起:{{$rent->sdate}}
訖:{{$rent->edate}}
|
@if (!empty($types['use']))
| 用途 |
{{config('rent.intramural_use')[$types['use']]}}
|
@if ($types['use'] <> 'other')
| 星期 |
@foreach ($course['weeks'] as $week)
{{config('rent.rent_week')[$week]}}
@endforeach
|
| 時間 |
起:{{$course['stime']}}
訖:{{$course['etime']}}
|
@endif
@endif
@foreach (config('rent.rent_type') as $key => $text)
| {{$text}} |
@if ($types[$key])是@else否@endif
|
@endforeach
@if (!empty($rent->attachment))
| 附件 |
查看
|
@endif
@if (count($rent->receipts))
| 收據 |
@foreach ($rent->receipts as $receipt)
@php
$text = config('rent.rent_receipt')[$receipt->kind]['name'].'收據';
@endphp
@endforeach
|
@endif
| 試算 |
{{number_format($rent->rental)}} |
@if (isset($basic['fee']['recognizance']))
| 保證金 |
{{number_format($basic['fee']['recognizance'])}} |
@endif
@if ($role == 'user')
| 狀態 |
{{ config('rent.status')[$rent->status] }} |
@if (!empty($rent->remark))
| 備註 |
{{ $rent->remark }} |
@endif
@endif