@extends('admin.layouts.master') @section('content')

{{ __('Job Categories') }}

{{ __('Job Categories List') }}

{{ __('Add') }}
@foreach ($jcategories as $id=>$jcategory) @endforeach
{{ __('Name') }} {{ __('Status') }} {{ __('Action') }}
{{ $jcategory->name }} @if($jcategory->status == 1) {{ __('Publish') }} @else {{ __('Unpublish') }} @endif {{ __('Edit') }}
@csrf @method('get')
@endsection