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

Select Category

0) {{'unchecked'}} @else {{'checked'}} @endif >
@foreach($categories as $category)
id) {{'checked'}} @endif >
@endforeach
@if(count($jobs) > 0) @foreach ($jobs as $job)
{{$job->title}}

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

Position Type: {{ ucwords($job->position_type) }}
Project Duration: {{ ucwords($job->project_duration) }}
Category: {{ ucwords($job->category->category_name) }}

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

NO RESULT FOUND

@endif
@endsection