20 lines
553 B
PHP
20 lines
553 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>
|
|
@endsection
|