@extends('layouts.portal') @section('title', 'Dashboard') @section('page-title', __('My Dashboard')) @section('sidebar') @include('seeker.partials.sidebar') @endsection @section('content')

{{ __('Saved Jobs') }}

{{ $savedCount }}

{{ __('Applications Sent') }}

{{ $appliedCount }}

@if($recentApplications->count())

{{ __('Recent Applications') }}

@foreach($recentApplications as $app)
{{ $app->job->title }}

{{ $app->job->company->name }}

{{ $app->status->label() }}
@endforeach
@endif @endsection