@extends('front.layouts.master') @section('content')

{{__('message.keywords')}}

{{__('message.companies')}}

    @foreach($companies as $k => $c)
  • @endforeach
{{$pagination_overview}} {{__('message.jobs')}}
@php $onerror = url('/g-assets').'/essentials/images/company-not-found.png'; @endphp @if($jobs) @foreach($jobs as $j)
{{$j['company']}}
{{$j['department']}} {{__('message.posted_on')}} : {{date('d M, Y', strtotime($j['created_at']))}}
@if(isset($j['job_filters'])) @foreach ($j['job_filters'] as $jf) {{ $jf['title'] }} : {{ implode(', ',$jf['values']) }} @endforeach @endif
@endforeach
@else
{{__('message.no_results')}}
@endif
@endsection