@extends('layouts.admin') @section('title', 'Dashboard') @section('content')

{{ $countProduct }}

Products

{{ $countCategory }}

Categories

{{ $countCustomer }}

Customer

{{ $countOrder }}

Orders

{{-- Customers --}}

Customers

@foreach($customer as $customers) @endforeach
Name Email
{{$customers->name}} {{$customers->email}}

Products

@foreach($product as $products) @endforeach
Product Image
{{$products->name}}

Categories

@foreach($category as $categorys) @endforeach
Name Image
{{$categorys->name}}

Brand

@foreach($brand as $brands) @endforeach
Name Image
{{$brands->name}}
@endsection @push('style') @endpush