@extends('front.layout.app') @section('content')
@if(isset($project))

About this project

{{ $project->desc }}

Standard


@if($project->rate == 'hourly')

${{ $project->budget }} / Hour

@else

${{ $project->budget }} / Fixed

@endif
@if(Auth::guard('procurement')->check()) @php $proposal = \App\Models\Proposal::where('procurement_id', Auth::guard('procurement')->user()->id)->where('project_id', $project->id)->first(); @endphp @if(isset($proposal))

Proposal Submitted

@else Submit Proposal @endif @else Submit Proposal @endif
@elseif(isset($procurement))

About this organization

What is Lorem Ipsum?

{{ $procurement->desc }}

Organization Services

    @foreach($procurement->organizations as $org) @foreach($org->departments as $depart)
  • {{ $depart->department_name }}

  • @endforeach @endforeach

Contact Service Provider:

@endif
@section('script') @endsection @endsection