@extends('layouts.landing') @section('title') Announcemnents @endsection @section('content')

Announcements

Create a Job
@forelse($feeds as $feed)
@php $user = App\Models\User::where('id', $feed->user_id)->first(); @endphp
@if(Auth::user()->isModerator()) @if($feed->general_pinned_post == 0)
@csrf
@elseif($feed->general_pinned_post == 1)
@csrf
@endif @else @if($feed->general_pinned_post == 1)
Pinned
@endif @endif @if(Auth::user()->id == $feed->user_id) @endif

{!! preg_replace("~[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]~", "\\0", $feed->content) !!}

@php $photos = json_decode($feed->photo_path); if($photos) { $photo_count = count($photos); } @endphp @if($photos) @if(count($photos) > 0 && count($photos) < 2)
@foreach ($photos as $photo)
image
@endforeach
@elseif(count($photos) > 1 && count($photos) < 3)
@foreach ($photos as $photo)
image
@endforeach
@elseif(count($photos) > 2 && count($photos) < 4)
@foreach ($photos as $photo)
image
@endforeach
@elseif(count($photos) > 3 && count($photos) < 5)
@foreach ($photos as $photo)
image
@endforeach
@elseif(count($photos) > 4) @php $n = 4; // to get the 4th image if the image count is greater than 3 @endphp
@foreach ($photos as $key => $photo) @if (in_array($key, [0,1,2,3])) @if(($key + 1) % $n)
image
@else @endif @endif @endforeach
@endif @endif @if($feed->video_path)
@endif @if($feed->file_path) @endif

@php $like_count = App\Models\Like::where('feed_id', $feed->id)->where('like', 1)->count(); @endphp @if($like_count > 0 && $like_count < 2) {{$like_count}} like @elseif($like_count > 1) {{$like_count}} likes @else {{$like_count}} like @endif

@php $comment_count = App\Models\Comment::where('feed_id', $feed->id)->count(); @endphp

Share

@php $comments = App\Models\Comment::where('feed_id', $feed->id)->orderBy('created_at', 'ASC')->limit(2)->get(); $all_comments = App\Models\Comment::where('feed_id', $feed->id)->count(); @endphp
@if(count($comments) > 0)
Most recent
@endif
@if($all_comments > 2)
@endif
@empty

There are currently no announcements

@endforelse
@forelse ($job_listing as $job_list)
{{$job_list->job_title}}

{{$job_list->company_name}}

Actively Recruiting till {{\Carbon\Carbon::parse($job_list->recruitment_end_date)->toFormattedDateString()}}

{!! $job_list->job_description !!}

Salary Estimation: {{$job_list->currency}} {{number_format($job_list->salary)}}

@php $user = App\Models\User::where('id', $job_list->user_id)->first(); @endphp
{{$user->first_name}} {{$user->last_name}}

Posted {{$job_list->created_at->diffForHumans()}}

@php $link = preg_replace('#^https?://#', '', rtrim($job_list->link, '/')); @endphp Apply Now
@empty

There are currently no jobs

@endforelse
@forelse ($my_jobs as $job_list)
{{$job_list->job_title}}

{{$job_list->company_name}}

Actively Recruiting till {{\Carbon\Carbon::parse($job_list->recruitment_end_date)->toFormattedDateString()}}

{!! $job_list->job_description !!}

Salary Estimation: {{$job_list->currency}} {{number_format($job_list->salary)}}

@php $user = App\Models\User::where('id', $job_list->user_id)->first(); @endphp
{{$user->first_name}} {{$user->last_name}}

Posted {{$job_list->created_at->diffForHumans()}}

@if($job_list->status == 'approved') Status: Approved @elseif($job_list->status == 'pending') Status: Pending @elseif($job_list->status == 'declined') Status: Declined @endif
@empty

You haven't created any job

@endforelse
@forelse ($pending_jobs as $job_list)
{{$job_list->job_title}}

{{$job_list->company_name}}

Actively Recruiting till {{\Carbon\Carbon::parse($job_list->recruitment_end_date)->toFormattedDateString()}}

{!! $job_list->job_description !!}

Salary Estimation: {{$job_list->currency}} {{number_format($job_list->salary)}}

@php $user = App\Models\User::where('id', $job_list->user_id)->first(); @endphp
{{$user->first_name}} {{$user->last_name}}

Posted {{$job_list->created_at->diffForHumans()}}

@if($job_list->status == 'pending')
@csrf
@elseif($job_list->status == 'approved')
@csrf
@elseif($job_list->status == 'declined')
@csrf
@endif
@empty

There are currently no pending jobs

@endforelse
People you may know
@forelse ($users as $user)
@php $followers = App\Models\Follower::where('user_id', Auth::user()->id)->get(); $user_has_followed = App\Models\Follower::where('followed_user_id', $user->id)->where('user_id', Auth::user()->id)->where('follow_status', 1)->first(); $user_has_unfollowed = App\Models\Follower::where('followed_user_id', $user->id)->where('user_id', Auth::user()->id)->where('follow_status', 0)->first(); $user_has_not_followed = App\Models\Follower::where('user_id', Auth::user()->id)->first(); @endphp @if(count($followers) > 0) @if($user_has_followed) Following
@empty

No Friends

@endforelse
@include('elements.create-job') @include('elements.share-feed') @include('elements.feeds-script') @endsection