@extends('front.layouts.master') @section('title', isset($title) ? $title : 'Home') @section('description', isset($description) ? $description : '') @section('keywords', isset($keywords) ? $keywords : '') @section('content')
@foreach ($presses as $press)
{{ date('F,d Y', strtotime($press->date)) }}
{{ Str::limit(langConverter($press->en_title, $press->fr_title), 50) }}
{!! Str::limit(strip_tags(langConverter($press->en_description, $press->fr_description)), 205) !!}
{{ __('Read More') }}
@endforeach
{{-- Pagination --}} {{ $presses->appends(request()->input())->links('vendor.pagination.careers') }} {{-- /Pagination --}}
@endsection