@extends('layouts.app') @section('content') @include('includes.header') @include('includes.inner_top_search')
@include('flash::message')
@include('includes.user_dashboard_menu')
{{auth()->user()->printUserCoverImage()}}
{{auth()->user()->printUserImage()}}

{{auth()->user()->name}}

{{Auth::user()->getLocation()}}
  • {{auth()->user()->phone}}
  • {{auth()->user()->email}}
@include('includes.user_dashboard_stats') @if((bool)config('jobseeker.is_jobseeker_package_active')) @php $packages = App\Package::where('package_for', 'like', 'job_seeker')->get(); $package = Auth::user()->getPackage(); if(null !== $package){ $packages = App\Package::where('package_for', 'like', 'job_seeker')->where('id', '<>', $package->id)->where('package_price', '>=', $package->package_price)->get(); } @endphp @if(null !== $package) @include('includes.user_package_msg') @include('includes.user_packages_upgrade') @else @if(null !== $packages) @include('includes.user_packages_new') @endif @endif @endif

Recommended Jobs

    @if(null!==($matchingJobs)) @foreach($matchingJobs as $match)
  • {{$match->title}}

    {{$match->getCompany()->name}}

  • @endforeach @endif

My Followings

    @if(isset($followers) && null!==($followers)) @foreach($followers as $follow) @php $company = DB::table('companies')->where('slug',$follow->company_slug)->where('is_active',1)->first(); @endphp @if(isset($company))
  • {{$company->name}}

    {{$company->location}}

    {{__('View Details')}}
  • @endif @endforeach @endif
@include('includes.footer') @endsection @push('scripts') @include('includes.immediate_available_btn') @endpush