| 場地 |
{{$rent->site_name}}
|
| 區域 |
@foreach ($areas as $area)
{{$area->name}}
@endforeach
|
| 日期 |
起:{{$rent->sdate}}
訖:{{$rent->edate}}
|
@if (isset($types['use']) && !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)
@if (isset($types[$key]) && !empty($types[$key]))
| {{$text}} |
@if ($types[$key])是@else否@endif
|
@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($data['basic']['fee']['recognizance']))
| 保證金 |
{{ number_format($data['basic']['fee']['recognizance']) }} |
@endif
@if ($rent->role != 'normal')
| 申請/借用單位 |
{{ $rent->rent_unit }} |
@endif
@if ($rent->site_id != env('SITE_ID'))
| 預估人數 |
{{ $rent->attendance }} |
@endif
@if (\Auth::user()->uid <> $rent->uid)
| 申請人 |
{{ $rent->user_name }} |
@endif
| 狀態 |
{{ config('rent.status')[$rent->status] }} |
@if (!empty($rent->remark))
| 備註 |
{{ $rent->remark }} |
@endif