@extends('web.layouts.container') @section('header')

{!! $detail->description !!}

@endsection @section('content')

{{__('companies.head')}}

{{__('companies.hint')}}

@if(count($companies))
@foreach($companies as $company)
{{$company->name}}

{!! $company->description !!}

@if($company->url ?? null) {{ __('companies.visit_url') }} @endif
@endforeach
@else
{{__('main.no_data')}}
@endif
@endsection @section('inner_js') @endsection