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

Applicants List

@if (session('status')) @endif
@php $applicants = DB::table('uniprojects')->orderBy('id','DESC')->get(); $sn = 1; @endphp @foreach($applicants as $app) @endforeach
S/N Name/ Company Name. Reg No. Phone No. Email Applied As Application Category Bank Name Account name/ Acc#
{{$n++}} {{ $app->full_name }} {{ $app->regno }} {{ $app->contact_number }}, {{ $app->altphone }} {{ $app->email }} {{ $app->regas }} {{ $app->category }} {{ $app->bankname }} {{ $app->accountname }} A/C #{{ $app->accountno }}
@endsection