@foreach ($jobs as $item)

{{ $item->title }}

{{ $item->date_from->day }}.{{ $item->date_from->month > 9 ? $item->date_from->month : '0' . $item->date_from->month }} - {{ $item->date_to->day }}.{{ $item->date_to->month > 9 ? $item->date_to->month : '0' . $item->date_to->month }}

{{ Str::limit(strip_tags($item->description), 200) }}

@endforeach