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

Artikel / Dienstleistungen

@if(UserController::checkRight("createProducts", $user)) Neuen Artikel anlegen @endif
 
Art-Nr.
Bezeichnung
Preis 1
Preis 2
Preis 3
Preis 4
@if(count($products) > 0) @foreach($products as $product)
{{ $product->name }}
{{ $product->price_1 }}
{{ $product->price_2 }}
{{ $product->price_3 }}
{{ $product->price_4 }}
@if(UserController::checkRight("editProducts", $user)) @endif
@if(UserController::checkRight("deleteProducts", $user)) @endif
@endforeach @else
Keine Produkte hinterlegt.
@endif
@include('layouts.overlay') @endsection