Files
website/resources/views/content/services.blade.php
2026-03-26 23:39:17 +01:00

22 lines
569 B
PHP

@extends('layout.app')
@section('scripts')
@endsection
@section('content')
<h1>{{ __('app.services.title') }}</h1>
<br />
<h2>{{ __('app.services.topic1.title') }}</h2>
<p>{!! __('app.services.topic1.content') !!}</p>
<br />
<h2>{{ __('app.services.topic2.title') }}</h2>
<p>{!! __('app.services.topic2.content') !!}</p>
<br />
<h2>{{ __('app.services.topic3.title') }}</h2>
<p>{!! __('app.services.topic3.content') !!}</p>
<br />
<h2>{{ __('app.services.topic4.title') }}</h2>
<p>{!! __('app.services.topic4.content') !!}</p>
<br />
<br />
@endsection