{{-- Extends layout --}} @extends('layout.default') {{-- Content --}} @section('content') {{-- Dashboard 1 --}} @parent
@include('common.msg')

Applicants List

@forelse($rows as $r) @empty @endforelse
# Name of Applicant Email Mobile Number Department CV Action
{{$index++}}. {{$r->name??''}} {{$r->email??''}} {{$r->phone??''}} {{$r->department??''}} @if($r->cv??'') Donload CV @else -- @endif
@csrf @method('delete')
No data found!
{!! $rows->appends(request()->query())->links('pagination::bootstrap-4') !!}
@endsection {{-- Styles Section --}} @section('styles') @endsection {{-- Scripts Section --}} @section('scripts') {{-- vendors --}} {{-- page scripts --}} @endsection