@extends('admin.layouts.app') @section('content')
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif

Designation List

Add Designation
@forelse($designations as $index => $designation) @empty @endforelse
Sr No. Designation Name Action
{{ $index + 1 }} {{ $designation->name }}
@csrf @method('DELETE')
No Designations found for this company.
@endsection