@extends('organizations.layouts.default') @section('title') / Details @endsection @section('content')
{!! htmlScriptTagJsApi() !!} @include('organizations.layouts.partials.breadcrumb')
Basic Details
@if (auth()->user()->email_verified_at == null) Please verify your email to proceed @else @if ($has_applied && $is_draft->application_status != 0) Already Applied @else @if (isset($is_draft))
Please complete your application
@else {{ html()->modelForm($model, 'POST', route('organization.tender-applications.store'))->id('form-validator')->acceptsFiles()->open() }} {{ html()->closeModelForm() }} @endif @endif @endif
Tender Number: {{ $model->tender_number }}
Title: {{ $model->title }}
@if ($model->tender_location)
Location: {{ $model->tender_location }}
@endif
Start Date: {{ \Carbon\Carbon::parse($model->start_date)->format('Y-m-d') }}
End Date: {{ \Carbon\Carbon::parse($model->end_date)->format('Y-m-d') }}
Who can Apply ?: {{ config('dropdown.can_apply.' . $model->can_apply) }}
Need separate technical & financial proposal ? : {{ config('dropdown.yes_no.' . $model->separate_proposal) }}
Want to set evaluation criteria ? : {{ config('dropdown.yes_no.' . $model->evaluation_criteria_set) }}
Apply Method : {{ $model->apply_online == 1 ? 'Online,' : '' }} {{ $model->apply_offline == 1 ? 'Offline,' : '' }} {{ $model->apply_email == 1 ? 'Email' : '' }}
@if ($model->apply_offline == 1)
Submission Address : {{ $model->submission_address }}
@endif @if ($model->apply_email == 1)
Submission Email : {{ $model->submission_email }}
@endif
@if ($model->apply_instruction)
Apply Instruction : {!! $model->apply_instruction !!}
@endif @if ($model->tender_details)
Tender Details : {!! $model->tender_details !!}
@endif @if ($model->criteria_details)
Criteria Details : {!! $model->criteria_details !!}
@endif @if ($model->evaluation_details)
Evaluation Details : {!! $model->evaluation_details !!}
@endif
@if (count($model->relatedDocuments) > 0)
Related Documents
@forelse ($model->relatedDocuments as $related) @empty @endforelse
{{ __('table.sn') }} Document Title Document File External Link Remarks
{{ $loop->index + 1 }}. {{ $related->document_title }} @if ($related->document_file) FILE @else - @endif {{ $related->document_external_link ?? '-' }} {{ $related->remarks }}
{{ __('table.no_data') }}
@endif @if (count($model->documents) > 0)
Required Documents
@foreach ($model->documents as $doc)
{{ $doc->document_title }}
@endforeach
@endif
@endsection