@extends('admin.layouts.admin') @section('style') @endsection @section('content')

Job Title List

@if(session('alert-green'))
{{ session('alert-green') }}
@endif @if(session('alert-danger'))
{{ session('alert-danger') }}
@endif @if($errors->any())
@foreach ($errors->all() as $error)
* {{$error}}
@endforeach
@endif {{ session('status') }}
@if(isset($titles) && count($titles) > 0) @foreach($titles as $title) @endforeach @else @endif
SL No. Name Category Action
{{ $loop->iteration ?? '' }} {{ $title->name ?? '' }} {{ $title->category ?? '' }}
@csrf
No Records Found !!
@endsection @section('script') @endsection