@extends('layouts.admin') @section('title', 'Texty na webu') @section('content')

Texty na webu

Texty
{{ csrf_field() }}
{{ Form::submit('Uložit', ['class' => 'btn btn-success mb-4']) }}
@foreach($sections as $sectionName)
@php($currentSection = '') @foreach((clone $pageTexts)->whereSection($sectionName)->get() as $pageText) @php($mceClass = $pageText->rich ? 'tinymce' : '') @if($pageText->section != $currentSection) @php($currentSection = $pageText->section) @endif @endforeach
Klíč Popis Hodnota - CZ Hodnota - EN

{{ $pageText->section }}

{{ $pageText->key }} {{ $pageText->description }} {{ Form::textarea('pageTexts['.$pageText->key.'][cz]', $pageText->getTranslation('content', 'cz', false), ['class' => 'form-control ' . $mceClass]) }} {{ Form::textarea('pageTexts['.$pageText->key.'][en]', $pageText->getTranslation('content', 'en', false), ['class' => 'form-control ' . $mceClass]) }}
{{ Form::submit('Uložit', ['class' => 'btn btn-success']) }}
@endforeach
@endsection