From 923721b05d4d93a8513c4e1471987da0bc9f4c99 Mon Sep 17 00:00:00 2001 From: Masroor Ehsan Date: Mon, 6 Jan 2025 18:30:35 +0600 Subject: [PATCH] wip --- .../views/staff/worklist/index.blade.php | 69 +------------------ .../staff/worklist/partials/_stats.blade.php | 67 ++++++++++++++++++ .../views/staff/worklist/table.blade.php | 1 + 3 files changed, 69 insertions(+), 68 deletions(-) create mode 100644 resources/views/staff/worklist/partials/_stats.blade.php diff --git a/resources/views/staff/worklist/index.blade.php b/resources/views/staff/worklist/index.blade.php index b26362f..61f8363 100644 --- a/resources/views/staff/worklist/index.blade.php +++ b/resources/views/staff/worklist/index.blade.php @@ -19,75 +19,8 @@ @endsection @section('content') - -
-
-
-
-
-
-
-

24

-

Clients

-
-
- - - -
-
-
-
-
-
-
-

165

-

Invoices

-
-
- - - -
-
-
-
-
-
-
-

$2.46k

-

Paid

-
-
- - - -
-
-
-
-
-
-

$876

-

Unpaid

-
-
- - - -
-
-
-
-
-
-
- - +
diff --git a/resources/views/staff/worklist/partials/_stats.blade.php b/resources/views/staff/worklist/partials/_stats.blade.php new file mode 100644 index 0000000..12422d6 --- /dev/null +++ b/resources/views/staff/worklist/partials/_stats.blade.php @@ -0,0 +1,67 @@ + + +
+
+
+
+
+
+
+

24

+

All

+
+
+ + + +
+
+
+
+
+
+
+

165

+

Pending

+
+
+ + + +
+
+
+
+
+
+
+

$2.46k

+

Work-in-progress

+
+
+ + + +
+
+
+
+
+
+

$876

+

Complete

+
+
+ + + +
+
+
+
+
+
+
diff --git a/resources/views/staff/worklist/table.blade.php b/resources/views/staff/worklist/table.blade.php index 7aeba1f..d8960fa 100644 --- a/resources/views/staff/worklist/table.blade.php +++ b/resources/views/staff/worklist/table.blade.php @@ -53,6 +53,7 @@ @endsection @section('content') + @include('staff.worklist.partials._stats')
{{ $dataTable->table(['class' => 'table table-sm'], true) }}