@extends('layouts.dashboard') @section('title-content') {{ config('app.name') }} |My courses @endsection @section('content')

The following is the list of details about students' clearance that are assigned to your level. Use the edit button to update the details.

@if ($clearances) @forelse($clearances as $clearance) @empty
Info! You have not been assigned any clearance at your level yet.
@endforelse
Clearance Level Status Remarks Action
{{ $clearance->student->reg_no }} {{ \Illuminate\Support\Str::upper($clearance->pivot->status) }}
{{ \Illuminate\Support\Str::ucfirst($clearance->pivot->remarks) }} {{ link_to(route('clearances.edit', $clearance->id), 'Resolve ') }}
@else
Info! You have not been assigned any clearance yet.
@if (false)
@csrf()
{{ Form::button('Request Clearance', ['type' => 'submit', 'class' => 'btn btn-lg btn-success pull-right']) }}
@endif @endif
@endsection @section('scripts') @endsection