@extends('layouts.app') @section('title', $fundingOpportunity->title . ' - Funding Opportunity') @section('content')

{{ $fundingOpportunity->title }}

@if($fundingOpportunity->organization)

{{ $fundingOpportunity->organization }}

@endif
Back to Funding
@if($fundingOpportunity->deadline)

Deadline: {{ \Carbon\Carbon::parse($fundingOpportunity->deadline)->format('M d, Y') }}

@endif @if($fundingOpportunity->amount)

Amount: {{ $fundingOpportunity->amount }} {{ $fundingOpportunity->currency }}

@endif @if($fundingOpportunity->region)

Region: {{ $fundingOpportunity->region }}

@endif @if($fundingOpportunity->category)

Category: {{ $fundingOpportunity->category }}

@endif @if($fundingOpportunity->eligibility)

Eligibility: {{ $fundingOpportunity->eligibility }}

@endif @if($fundingOpportunity->summary)
Summary:

{{ $fundingOpportunity->summary }}

@endif @if($fundingOpportunity->link) Open Opportunity @endif
@endsection