@extends('layouts.admin') @section('page-title') {{__('Manage Archive Application')}} @endsection @section('breadcrumb') @endsection @section('content')
@foreach ($archive_application as $application) @endforeach
{{__('Name')}} {{__('Applied For')}} {{__('Rating')}} {{__('Applied at')}} {{__('CV / Resume')}} {{__('Action')}}
{{$application->name}} {{ !empty($application->jobs)?$application->jobs->title:'-' }} @for($i=1; $i<=5; $i++) @if($i <= $application->rating) @else @endif @endfor {{\Auth::user()->dateFormat($application->created_at)}} @if(!empty($application->resume)) @else - @endif @can('show job application') @endcan
@endsection