@extends('layout') @section('title', 'Dashboard') @section('content') @if($success = Session::get('success')) @endif
@if(Auth::user()->role_id == 1)

Total Order Hari Ini

{{ $total_order_hari_ini }}

Total Penjualan Hari Ini

{{$total_penjualan_hari_ini}}

Total Barang Terjual Hari Ini

{{ $total_barang_terjual_hari_ini }}
@endif
@if(Auth::user()->role_id == 1)

Daftar Nama Order Hari Ini

@php $no = 1; @endphp @foreach($nama_order_hari_ini as $user) @foreach($user->order_details as $order) @endforeach @endforeach
No Nama Customer Invoice Status
{{ $no++ }} {{ $user->name }} {{ $order->order_id }} {{ ucfirst($order->status) }}
@endif
@endsection