@extends('base') @section('content')

Jobs

@if(session()->has('success'))
{{ session()->get('success') }}
@endif

My Jobs

@foreach($getJob as $index => $getJobs) @csrf @endforeach
SL NO Job Title Job Description Created At Action
{{ $index +1 }} {{ $getJobs->job_title }} {{ $getJobs->job_description }} {{ $getJobs->created_at }}
@endsection