@extends( 'layout.dashboard' ) @section( 'content' )

Hey, {{ $user->first_name }}!

We are glad to see you again!
{{--
--}} {{--
--}} {{-- @hasrole( 'employer' )--}} {{--
--}} {{-- Jobs Posted--}} {{--

{{ $user->jobs->count() }}

--}} {{--
--}} {{-- @else--}} {{--
--}} {{-- Jobs Applied--}} {{--

4

--}} {{--
--}} {{-- @endhasrole--}} {{--
--}} {{--
--}} {{--
--}} {{-- @hasrole( 'employer' )--}} {{--
--}} {{-- Reviews--}} {{--

{{ $company_reviews }}

--}} {{--
--}} {{-- @endhasrole--}} {{--
--}} {{--
--}} {{-- --}} {{--
--}} {{--
--}} {{-- This Month Views--}} {{--

{{ $user->monthly_views }}

--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}}
@hasrole( 'employer' )
    @foreach( $active_jobs as $job )
  • {{ $job->title }} {{--Pending Approval--}}

    Manage Candidates {{ $job->applicants->count() }}
    {{ csrf_field() }} {{ method_field( 'delete' ) }}
  • @endforeach {{ $active_jobs->links() }}
    @foreach( $filled_jobs as $job )
  • {{ $job->title }} {{--Pending Approval--}}

    Manage Candidates {{ $job->applicants->count() }}
    {{ csrf_field() }} {{ method_field( 'delete' ) }}
  • @endforeach {{ $filled_jobs->links() }}
    @foreach( $archived_jobs as $job )
  • {{ $job->title }} {{--Pending Approval--}}

    Manage Candidates {{ $job->applicants->count() }}
    {{ csrf_field() }} {{ method_field( 'delete' ) }}
  • @endforeach {{ $archived_jobs->links() }}
{{--
--}} {{-- --}} {{--
--}} {{--
--}} {{-- --}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
    --}} {{-- @if( $active_jobs->count() === 0 )--}} {{--

    You have no active jobs.

    --}} {{-- @else--}} {{-- @foreach( $active_jobs as $job )--}} {{--
  • --}} {{-- --}} {{--
    --}} {{-- --}} {{--
    --}} {{-- --}} {{-- --}} {{-- --}} {{--
    --}} {{--

    --}} {{-- {{ $job->title }}--}} {{-- --}}{{--Pending Approval--}} {{--

    --}} {{-- --}} {{-- --}} {{--
    --}} {{--
    --}} {{--
    --}} {{-- @hasrole( 'employer' )--}} {{-- --}} {{--
    --}} {{-- Manage Candidates--}} {{-- {{ $job->applicants->count() }}--}} {{-- --}} {{--
    --}} {{-- {{ csrf_field() }}--}} {{-- {{ method_field( 'delete' ) }}--}} {{-- --}} {{--
    --}} {{--
    --}} {{-- @endhasrole--}} {{--
  • --}} {{-- @endforeach--}} {{-- @endif--}} {{-- {{ $active_jobs->links() }}--}} {{--
--}} {{--
--}} {{--
--}} {{--
    --}} {{-- @if( $inactive_jobs->count() === 0 )--}} {{--

    You have no inactive jobs.

    --}} {{-- @else--}} {{-- @foreach( $inactive_jobs as $job )--}} {{--
  • --}} {{-- --}} {{--
    --}} {{-- --}} {{--
    --}} {{-- --}} {{-- --}} {{-- --}} {{--
    --}} {{--

    --}} {{-- {{ $job->title }}--}} {{-- --}}{{--Pending Approval--}} {{--

    --}} {{-- --}} {{-- --}} {{--
    --}} {{--
    --}} {{--
    --}} {{-- @hasrole( 'employer' )--}} {{-- --}} {{--
    --}} {{-- Manage Candidates--}} {{-- {{ $job->applicants->count() }}--}} {{-- --}} {{--
    --}} {{-- {{ csrf_field() }}--}} {{-- {{ method_field( 'delete' ) }}--}} {{-- --}} {{--
    --}} {{--
    --}} {{-- @endhasrole--}} {{--
  • --}} {{-- @endforeach--}} {{-- @endif--}} {{-- {{ $inactive_jobs->links() }}--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} @endhasrole @hasrole( 'freelancer' )
    @if( $active_jobs->count() === 0 )

    You have no active jobs.

    @else @foreach( $active_jobs as $job )
  • {{ $job->title }} {{--Pending Approval--}}

  • @endforeach @endif {{ $active_jobs->links() }}
    @if( $archived_jobs->count() === 0 )

    You have no inactive jobs.

    @else @foreach( $archived_jobs as $job )
  • {{ $job->title }} {{--Pending Approval--}}

  • @endforeach @endif {{ $archived_jobs->links() }}
@endhasrole
{{----}} {{--
--}} {{--
--}} {{----}} {{--
--}} {{--

Howdy, {{ $user->first_name }}!

--}} {{--We are glad to see you again!--}} {{--
--}} {{----}} {{--
--}} {{--
--}} {{--
--}} {{--Jobs Applied--}} {{--

{{ $user->getAppliedForJobs()->count() }}

--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--Reviews--}} {{--

0

--}} {{--
--}} {{--
--}} {{--
--}} {{----}} {{--
--}} {{--
--}} {{--This Month Views--}} {{--

0

--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{----}} {{----}} {{----}} {{----}} {{--
--}} {{--
--}} {{----}} @endsection