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

Career Applications

@if(session('success'))
{{ session('success') }}
@endif
@forelse($applications as $key => $app) @empty @endforelse
Sr.No Name Email Phone Position Resume Action
{{ $key + 1 }} {{ $app->name }} {{ $app->email }} {{ $app->phone }} {{ $app->position ?? '-' }} View View
@csrf @method('DELETE')
No applications found
{{ $applications->links() }}
@endsection