@extends('website.layouts.app') @section('description') @php $data = metaData('home'); @endphp {{ $data->description }} @endsection @section('og:image') {{ asset($data->image) }} @endsection @section('title') {{ $data->title }} @endsection @section('main')
{{ livejob() }}
{{ __('live_job') }}
{{ $companies }}
{{ __('companies') }}
{{ $candidates }}
{{ __('candidates') }}
{{ $newjobs }}
{{ __('new_jobs') }}

{{ __('popular_category') }}

{{ config('app.name') }}
{{ __('create_account') }}
{{ __('create_account_description') }}
{{ __('upload_cv_resume') }}
{{ __('upload_cv_resume_description') }}
{{ __('find_suitable_job') }}
{{ __('find_suitable_job_description') }}
{{ __('apply_job') }}
{{ __('apply_job_description') }}
@if ($featured_jobs && count($featured_jobs))

{{ __('featured_job') }}

    @foreach ($featured_jobs as $job) @endforeach
@endif @if ($top_companies->count() > 0) @if (!auth('user')->check() || (auth('user')->check() && auth('user')->user()->role == 'candidate'))

{{ __('top') }} {{ __('companies') }}

@foreach ($top_companies as $company)
@isset($company->country) {{ $company->country }} @endisset {{ $company->user->name }}
@endforeach
@endif @endif @if ($testimonials->count())

{{ __('clients_testimonial') }}

@foreach ($testimonials as $testimonial)
@for ($i = 0; $i < $testimonial->stars; $i++) @endfor
{{ Str::words($testimonial->description, 30, '...') }}
{{ $testimonial->name }}
{{ $testimonial->position }}
@endforeach
@endif @guest
@include('website.partials.call-to-action')
@endguest {{-- Apply job Modal --}} @endsection @section('css') @endsection @section('script') @endsection