@extends('inventory.layout') @section('title', 'Dashboard') @section('content') @push('head') @endpush
{{--

{{isset($item) ? $item:''}}

{{ __('Products')}}

{{ isset($usercount) ? $usercount:''}}

{{ __('Users')}}

--}} {{--

{{ __('New Users')}}

@foreach($users as $user)
{{ isset($user->name) ? $user->name:'' }}
{{ isset($user->phone) ? $user->phone:'' }}
{{Carbon\Carbon::parse($user->created_at)->format('d M')}}
@endforeach

{{ __('New Products')}}

@foreach($newitem as $item) @endforeach
{{ __('Name')}} {{ __('Product Code')}} {{ __('Image')}} {{ __('Brand')}}
{{ isset($item->name) ? $item->name:''}} {{ isset($item->product_code) ? $item->product_code:''}} @if(isset($item->image)) @else @endif {{ isset($item->brand) ? $item->brand:''}}
--}}
@push('script') @endpush @endsection