@extends('layouts.app')
@section('title', $service->title)
@section('content')
@php
$company = \App\Models\User::getCompanyProfile();
@endphp
{{ $service->title }}
{!! $service->description !!}
@if ($service->serviceFiles->count() > 0)
Documents associés
@foreach ($service->serviceFiles as $file)
{{ basename($file->file_path) }}
@endforeach
@endif
Autres Services
@foreach ($relatedServices as $relatedService)
@endforeach
Besoin d'aide?
Appelez-nous
{{ $company->company_phone }}
Email
{{ $company->company_email }}
@endsection