@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_user) @endforeach
ID {{__('Mail')}} {{__('is like')}} {{__('OrderID')}} {{__('txaction')}} {{__('Action')}}
{{$shopping_user->id}} {{$shopping_user->billing_email}} {{$shopping_user->is_like}} @if($shopping_user->shopping_order){{$shopping_user->shopping_order->id}}@endif @if($shopping_user->shopping_order){{$shopping_user->shopping_order->txaction}}@endif
@endif
{!! Form::close() !!} @endsection