@extends('admin.master') @section('title') Dashboard @endsection @section('sideMenuTitle') Dashboard @endsection @section('pageTitle') Dashboard @endsection @section('bodyContent')

{{$orders}}

New Orders

More info

{{$categories}}

Categories

More info

{{$products}}

Products

More info

{{$users}}

Users

More info

Monthly Sales (6 Months)

Today Top 10 Sales

@foreach($orderList as $val) @endforeach
ID Invoice No # Grand Total ({{isset($settings) ? $settings->currency_symbol ?? "Currency Not Set" : "Currency Not Set"}})
{{ $i++ }} {{$val->order_number}} {{$val->grandtotal}}

Latest Medicine

@foreach($newProducts as $val) @endforeach
Name Purchase Price({{isset($settings->currency_symbol) ? $settings->currency_symbol : 0}}) Selling Price({{isset($settings->currency_symbol) ? $settings->currency_symbol : 0}}) Total Item
{{$val->name}} {{$val->purchasePrice}} {{$val->sellingPrice}} {{$val->totalPurchedItem}}
@endsection @section('page_script') @endsection