@extends('admin.layouts.app')
@section('content')
Career Applications
@if(session('success'))
{{ session('success') }}
@endif
| Sr.No |
Name |
Email |
Phone |
Position |
Resume |
Action |
@forelse($applications as $key => $app)
| {{ $key + 1 }} |
{{ $app->name }} |
{{ $app->email }} |
{{ $app->phone }} |
{{ $app->position ?? '-' }} |
View
|
View
|
@empty
| No applications found |
@endforelse
{{ $applications->links() }}
@endsection