@extends('layouts.master') @section('content') Textbausteine @if(UserController::checkRight("createTextblocks", $user)) Neuen Textbaustein anlegen @endif Typ Betreff Text @if(count($textblocks) > 0) @foreach($textblocks as $textblock) {{ $textblock->getLabelForTextblockType() }} {{ $textblock->subjectExcerpt(45) }} {{ $textblock->textExcerpt(150) }} @if(UserController::checkRight("editTextblocks", $user)) @endif @if(UserController::checkRight("deleteTextblocks", $user) && $textblock->type != Textblock::TEXTBLOCKTYPE_APPOINTMENTMAIL) @endif @endforeach @else Keine Textbausteine hinterlegt. @endif @include('layouts.overlay') @endsection