@extends('.frontend.default') @section('content')

{{ $data->event_title }}

報價工作編號:{{ $data->custom_code }}

@if ($data->status == \App\Models\Quotation\QuotationInquiry::STATUS_TEACHER_PENDING && $quotations->where('status', \App\Models\Quotation\Quotation::STATUS_APPROVE)->count() > 0)
按此上傳確認報價文件
@endif

報價詳細

詳細進度
@if ($quotations->isEmpty()) @else @foreach ($quotations as $quotation) @if ($quotation->status == App\Models\Quotation\Quotation::STATUS_CONFIRMED && $quotation->invoices->count() == 0) @else @endif @endforeach @endif
報價單狀態 報價單編號 發出報價單日期 報價單金額 提供服務單位 下載
暫未有報價單
{{ __('quotation_inquiry/quotation/status.' . $quotation->status) }} {{ $quotation->custom_code }} {{ $quotation->created_at->format('Y-m-d') }} HK${{ number_format($quotation->total_cost,2) }} {{ $quotation->unit->c_unitname }}重新上傳報價單
@if($data->eventMethod()->exists() || $data->eventClass()->exists())
@if($data->eventMethod()->exists()) @endif @if($data->eventClass()->exists()) @endif
@endif
@if (!empty($data->event_id))

<

學校報價紀錄

  • 舉辦單位:{{empty($data->unit) ? '-' : $data->unit->c_unitname }}

  • 服務地點:{{ empty($data->event_active_address) ? '-' : __('event/active_address.' . $data->event_active_address) }}

  • 服務對象:{{ empty($data->eventTarget) ? '-' : $data->eventTarget->name}}

  • 服務內容:@nl2br(empty($data->event_content) ? '-' : $data->event_content)

  • 報名須知:@nl2br(empty($data->event_participation_details) ? '-' : $data->event_participation_details)

  • 截止報名日期:{{ empty($data->event_deadline) ? '-' : \Carbon\Carbon::parse($data->event_deadline)->format('d/m/Y')}}

  • 收費:{{$data->event_refer_cost}}

  • @if(!empty($data->event_id))
  • 查詢聯絡人資料:
    {!! nl2br($data->getContactUsWithMailTo($data->event_contact_us)) !!}

  • @endif @if(!empty($data->event_frontend_remark))
  • 備註:@nl2br($data->event_frontend_remark)

  • @endif
@endif

學校報價紀錄

  • 舉辦單位:{{ empty($data->unit) ? '-' : $data->unit->c_unitname }}

  • 服務日期:{{ optional($data->start_date)->format('d/m/Y')}} - {{ optional($data->end_date)->format('d/m/Y')}}

  • 參與人數:{{ $data->member_value > 0 ? $data->member_value.'人' : '-'}}

  • 查詢內容:@nl2br(empty($data->quotation_inquiry_content) ? '-' : $data->quotation_inquiry_content)

  • 負責老師:{{ $data->submitTeacher->fullName }}

@forelse($invoices as $invoice) @empty @endforelse
發票狀態 發票編號 發出發票日期 發票金額 未付金額 提供發票單位 下載
{{ __('invoice/status.' . $invoice->status) }} {{ $invoice->custom_code }} {{ \Carbon\Carbon::parse($invoice->approved_at)->format('d/m/Y H:i') }} HK$ {{ number_format($invoice->amount, 2) }} HK$ {{ number_format($invoice->difference_amount, 2) }} {{ $invoice->unit->c_unitname }}
暫未有發票
@if ($data->status == \App\Models\Quotation\QuotationInquiry::STATUS_TEACHER_PENDING)
@endif
@endsection @section('pagescript') @endsection