@extends('layouts.master') @section('title') @lang('translation.Dashboard') @endsection @section('content') @component('common-components.breadcrumb') @slot('pagetitle') Clouddreams @endslot @slot('title') Dashboard @endslot @endcomponent @php use Illuminate\Support\Facades\DB; $category = DB::table('categories')->count(); $employee = DB::table('employees')->count(); $project = DB::table('projects')->count(); $projects = DB::table('projects')->get(); @endphp

{{ $category}}

Total Category

2.65% since last week

{{$employee}}

Employees

0.82% since last week

{{$project}}

Project

6.24% since last week

+ 12.58%

Growth

10.51% since last week

Sales Analytics

  • $2,371Income

  • 258Sales

  • 3.6%Conversation Ratio

Our for better projects

Project

@foreach($projects as $project)

{{$project->name}}

@endforeach
@endsection @section('script') @endsection