@php
$paragraphs=getter('paragraphs')->setLang(app()->getLocale())->condition('position','=','about-us')->get();
@endphp
@extends('layouts.main',[
'compact'=>'compact'
])
@section('title')
{{__('texts.about-us')}} | {{env('APP_NAME')}}
@endsection
@section('content')
@if(isset($paragraphs) && count($paragraphs)>0)
@foreach($paragraphs as $paragraph)
{{$paragraph->label}}
@endforeach
@endif
@if(isset($paragraphs) && count($paragraphs)>0)
@foreach($paragraphs as $paragraph)
@include('components.paragraph',['paragraph'=>$paragraph])
@endforeach
@endif
@endsection