@extends('front.layouts.master') @section('content')
{{$pagination_overview}}
@if(count($companies) > 0) @php $onerror = url('/g-assets').'/essentials/images/company-not-found.png'; @endphp @foreach($companies as $company)
{{$company->company}}
{{__('message.since')}} : {{date('d M, Y', strtotime($company['created_at']))}}

{{$company->short_description ? $company->short_description : __('message.no_description') }}

@endforeach @else
{{__('message.no_results')}}
@endif
@endsection