@extends('layouts.layout-2') @section('content') @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Kunden

{!! Form::open(['url' => url()->current(), 'class' => '']) !!}
{{ Form::textarea('text', $text, array('class'=>'form-control', 'rows'=>1)) }}
@if(count($values)>0)
@foreach($values as $shopping_order) @endforeach
ID {{__('shopping_user_id')}} {{__('total_shipping')}} {{__('payment_credit')}} {{__('txaction')}}
{{$shopping_order->id}} {{$shopping_order->auth_user_id}} {{$shopping_order->total_shipping}} {{$shopping_order->payment_credit}} {{$shopping_order->txaction}}
@endif
{!! Form::close() !!} @endsection