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

Bezahlstatus

@if(UserController::checkRight("createOrderPaymentStatus", $user)) Neuen Bezahlstatus anlegen @endif
 
Bezahlstatus
Aktionen
@if(count($orderPaymentStatus) > 0) @foreach($orderPaymentStatus as $orderPaymentStatusItem)
{{ $orderPaymentStatusItem->label }}
@if(UserController::checkRight("editOrderPaymentStatus", $user)) @endif
@if(UserController::checkRight("deleteOrderPaymentStatus", $user)) @endif
@endforeach @else
Keine Bezahlstatus hinterlegt.
@endif
@include('layouts.overlay') @endsection