@extends('layouts.admin.app') @section('tablecss') @endsection @section('content')
@foreach($choices as $choice) @endforeach
Photo Name Applicant ID Mobile Faculty List Quota
@php if(!empty($choice)) { $url = 'profile_pictures/'.$choice->applicant->admission_roll.'.jpg'; } @endphp {{asset('user_avatar.png')}} {{$choice->user->name}} {{$choice->applicant->applicant_id}} 0{{$choice->user->mobile}} {{$choice->faculty}} @php if(!empty($choice->list)) { $datas = explode(";", $choice->list); } @endphp @foreach ($datas as $key => $data) @if($data != null)

{{$key + 1}}: {{$data}}

@endif @endforeach
{{$choice->quota}}
{{$choices->links()}}
@endsection @section('scripts') @endsection