@if(is_employer())
@if($rows->total() > 0)
@foreach($rows as $row)
@php
$id = $row->id;
$row = $row->service;
$translation = $row->translateOrOrigin(app()->getLocale());
$view_profile = (!empty($hide_profile)) ? 0 : 1;
@endphp
@if($row->title)
- {{$row->title}}
@endif
@if($row->city)
- {{$row->city}}
@endif
@if($row->expected_salary)
- {{$row->expected_salary}} {{currency_symbol()}} / {{$row->salary_type}}
@endif
@if(!empty($row->categories))
@foreach($row->categories as $oneCategory)
@php $t = $oneCategory->translateOrOrigin(app()->getLocale()); @endphp
- {{$t->name}}
@endforeach
@endif
@endforeach
@else
{{ __("No items") }}
@endif
@else
{{ __("Job Title") }} |
{{ __("Posted Date") }} |
{{ __("Action") }} |
@if($rows->total() > 0)
@foreach($rows as $row)
@include('Job::frontend.layouts.loop.job-item-bookmark',['row'=>$row->service])
|
{{ display_date($row->service->create_date) }} |
|
@endforeach
@else
{{ __("No items") }} |
@endif
@endif