@extends('layouts.app') @section('title','Lieferanten') @section('breadcrumb') @endsection @section('content')

Lieferanten

@if ( count($suppliers) > 0 ) @foreach ($suppliers as $supplier) @endforeach
Kundennummer Name E-Mail
{{ $supplier->accounting_reference }} {{ $supplier->name }} {{ $supplier->email }} @include('components.button_show',['action' => action('SupplierController@show',$supplier)]) @include('components.button_edit',['action' => action('SupplierController@edit',$supplier)])
@else
Keine Lieferanten eingetragen!
@endif
Hinzufügen
@endsection