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))
@else
Submit Proposal
@endif
@else
Submit Proposal
@endif