@extends('admin.layout.master') @section('style') @stop @section('body')

{{$page_title}} CHANGE STATUS

@foreach($applicants as $applicant) @endforeach

select/all

First name Last name Email City Country State Cell phone @sortablelink('status', 'Status') @sortablelink('created_at', 'Applied') Actions
{{ $applicant->f_name }} {{ $applicant->l_name }} {{ $applicant->email }} {{ $applicant->city }} {{ $applicant->country }} {{ $applicant->state }} {{ $applicant->cell_phone }} status == "done"){{"text-success"}}@elseif($applicant->status == "declined"){{"text-danger"}}@endif"> {{ ucfirst($applicant->status) }} {{ $applicant->apply_time }} View Status {{--@if($applicant->status == 'processing') Decline @endif--}} Delete
@endsection @section('script') @endsection