@extends('layouts.app_old') @section('title') Homepage - Client @endsection @section('content')
@include('partials.alert')

CURRENT OPEN JOBS

@if(count($jobs) > 0)
@foreach($jobs as $job) @endforeach
{{$job->title}}

Posted: {{$job->created_at->diffForHumans()}}

{{ $jobs->links() }}
@else

You currently have no open job postings

@endif
@endsection