@extends('front.layouts.master') @section('title', isset($title) ? $title : 'Home') @section('description', isset($description) ? $description : '') @section('keywords', isset($keywords) ? $keywords : '') @section('content')
{{ __('Projects and Initiatives') }}
{{ __('Home') }}
{{ __('Projects and Initiatives') }}
{{ __('Past Projects') }}
{{ __('Current Projects') }}
{{ __('Future Projects') }}
@foreach (futureProjects() as $project)
{{ langConverter($project->en_title,$project->fr_title) }}
{{ langConverter($project->en_title,$project->fr_title) }}
{{ langConverter($project->en_description,$project->fr_description) }}
@if (app()->getLocale() == 'en') @if (isset($project->file))
{{ $project->en_title }}
@endif @endif @if (app()->getLocale() == 'fr') @if (isset($project->fr_file))
{{ $project->fr_title }}
@endif @endif
@endforeach
{{-- Pagination --}} {{ futureProjects()->links('vendor.pagination.careers') }} {{-- /Pagination --}}
@endsection