{{--

{{ __('Dashboard') }}

--}}

{{ __('Dashboard') }}

Users created

{{$users}}

This week created: {{$this_week_users}}

Products

{{$products}}

This week created: {{$this_week_products}}

Questionnaires

Created

{{$created_questioners}}

Answered

{{$answerd_formular}}

This week: Answered({{$this_week_answerd_formular}})

Orders

{{$orders}}

This week: {{$this_week_orders}}

Last 10 orders

@if(count($last_10_orders) > 0) @foreach ($last_10_orders as $order) @endforeach @else @endif
ID Name Email City/Country Products Type Status Sum price Action
{{ $loop->iteration }} {{ $order->first_name }} {{ $order->last_name }} {{$order->email }} {{$order->city }} @if($order->country) / {{$order->country->title }} @endif
    @if($order->products) @foreach ( $order->products as $order_product)
  • {{$order_product->product->title}} x {{$order_product->quantity}}
  • @endforeach @endif
{{$order->type }} {{$order->status }} ${{$order->sum_price() }} View
No orders
@foreach ($invoice_orders as $order) @endforeach
ID Name Email City/Country Products Type Status Sum price Action
{{ $loop->iteration}} {{ $order->first_name }} {{ $order->last_name }} {{$order->email }} {{$order->city }} @if($order->country) / {{$order->country->title }} @endif
    @if($order->products) @foreach ( $order->products as $order_product)
  • {{$order_product->product->title}} x {{$order_product->quantity}}
  • @endforeach @endif
{{$order->type }} {{$order->status }} ${{$order->sum_price() }} View