@extends('layouts.master') @section('content')

Projektvariablen

@if(UserController::checkRight("createVariable", $user)) Neue Projektvariable anlegen @endif
{{--
--}} {{--
--}} {{--
--}}
 
Bezeichnung
Bezeichnung im Dokument
Variablentyp
Aktionen
@if(count($variableList) > 0) @foreach($variableList as $variable)
{{ $variable->title }}
{{ $variable->variable_title }}
@switch($variable->type) @case("image") Bild @break @case("selection") Auswahl @break @case("value") Text @break @endswitch
@if(UserController::checkRight("editVariable", $user)) @endif
@if(UserController::checkRight("deleteVariable", $user)) @endif
@endforeach
@else
Keine Variablen für Projekte hinterlegt.
@endif
@include('layouts.overlay') @endsection