@include('global.header-links')
@include('partials.sidebar')
@include('partials.header')

Job Types

Selected
@if(session()->has('success'))
{{ session()->get('success') }}
@elseif(session()->has('error'))
{{ session()->get('error') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @foreach ($jobTypes as $jobType) @endforeach
Job types Status Job count Created by Created at Actions
{{$jobType->job_type}}
{{$jobType->status == 1 ? 'Active' : 'Deactive'}}
{{$jobType->job_count}}
You {{$jobType->created_at->format('d M Y, g:i a')}} Actions
@include('partials.footer')
@include('global.footer-links')