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

Client Dashboard

@if(count($jobs) > 0) @foreach ($jobs as $job) @endforeach @else

You don't have any job post

@endif
Job Date Posted Posted By
{{$job->title}}
{{$job->created_at->diffForHumans()}} {{$job->user->name}}
{{$jobs->links()}}
@endsection