@extends('admin.layouts.app') @section('title','My Applied') @section('content')

{{__("Applied Jobs")}}

@include('admin.message')

{{__('Found :total items',['total'=>$rows->total()])}}

@if($rows->total() > 0) @foreach($rows as $row) @endforeach @else @endif
{{ __('Job Title')}} {{ __('Date Applied')}} {{ __('Status')}} {{ __("Actions") }}
@if($row->jobInfo) {{ $row->jobInfo->title}} @else {{__('[Deleted]')}} @endif {{ display_date($row->created_at) }} {{ $row->status }} @if($row->status == 'pending') @endif @if($row->jobInfo) @else {{__('[Deleted]')}} @endif
{{__("No data")}}
{{$rows->appends(request()->query())->links()}}
@endsection