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

Dashboard

Articles
@if (count($data['artical']) > 0) @php $i = 1 @endphp @foreach($data['artical'] as $artical) @if ($i > 5) @break @endif @php $i++; @endphp @endforeach @else @endif
S. No. Article Category Created On
{{$i}}
@if (!empty($artical->article_image)) @php $imageUrl = getImageUrl($artical->article_image, 'article_image', 'thumb'); @endphp Article Image @else Article Image @endif
{{getCategoryName($artical->articleCategories->pluck('category_id')->toArray(), 3)}} {{getConvertedTimeZoneDate($artical->created_at)}}
{{ __('error.no_record') }}
Jobs
@if (count($data['job']) > 0) @php $i = 1 @endphp @foreach($data['job'] as $job) @if ($i > 5) @break @endif @php $i++; @endphp @endforeach @else @endif
S. No. Title Category Sub Category Created On
{{$i}}
{{$job->jobCategories->name}} {{$job->jobSubCategories->name}} {{getConvertedTimeZoneDate($job->created_at)}}
{{ __('error.no_record') }}
Jobs Apply
@if (count($data['career']) > 0) @php $i = 1 @endphp @foreach($data['career'] as $career) @if ($i > 5) @break @endif @php $i++; @endphp @endforeach @else @endif
S. No. Name Email Description Applied On
{{$i}}
{{(strlen($career->description) > 120) ? substr($career->description, 0, 120).'...' : $career->description}} {{getConvertedTimeZoneDate($career->created_at)}}
{{ __('error.no_record') }}
@endsection