@extends('layouts.main') @section('title', 'Dashboard') @section('content') @push('head') @endpush

{{ $totalproduct }}

{{ __('Products')}}

{{ $totalEnquiry }}

{{ __('Enquiry')}}

{{ $totalCustomer }}

{{ __('Customers')}}

{{ $totalsuppliers }}

{{ __('Suppliers')}}

{{ __('New Customers')}}

@foreach ($allcustomer as $item) @endforeach

{{ __('New Products')}}

@foreach ($products as $item) @endforeach
{{ __('Product Name')}} {{ __('Image')}} {{ __('code')}} {{ __('Buy Price')}} {{ __('Sell Price')}}
{{ $item->name }} @if ($item->images) @foreach (json_decode($item->images) as $image) @endforeach @endif {{ $item->sku }} {{ $item->buypricecurrency }} {{ $item->buyprice }} {{ $item->sellpricecurrency }} {{ $item->sellprice }}
@push('script') @endpush @endsection