- {{$row->title}}
@if($row->city)
- {{$row->city}}
@endif
@if($row->expected_salary)
- {{$row->expected_salary}} {{currency_symbol()}} / {{$row->salary_type}}
@endif
@if($row->user->created_at)
- {{__('Member Since')}} {{date('M d, Y', strtotime($row->user->created_at))}}
@endif
@php
$categories = $row->getCategory();
@endphp
@if(!empty($row->categories))
@foreach($row->categories as $oneCategory)
@php $trans = $oneCategory->translateOrOrigin(app()->getLocale()); @endphp
- {{$trans->name}}
@endforeach
@endif