From e5439ac63f201623a1640ab7d2f066a25ba6c635 Mon Sep 17 00:00:00 2001 From: Ale Gallo Date: Fri, 10 Nov 2023 16:39:54 +0100 Subject: [PATCH] Committing laravel (part 4) committing blade templating files and components that might come in handy --- .../views/components/calendar/index.blade.php | 20 + .../dark-mode-switcher/index.blade.php | 20 + .../components/donut-chart/index.blade.php | 15 + .../horizontal-bar-chart/index.blade.php | 15 + .../components/leaflet-map/index.blade.php | 6 + .../components/line-chart/index.blade.php | 15 + .../main-color-switcher/index.blade.php | 28 + .../components/mobile-menu/index.blade.php | 133 +++ .../components/pie-chart/index.blade.php | 15 + .../report-bar-chart-1/index.blade.php | 15 + .../report-bar-chart/index.blade.php | 15 + .../report-donut-chart-1/index.blade.php | 15 + .../report-donut-chart-2/index.blade.php | 15 + .../report-donut-chart/index.blade.php | 15 + .../report-line-chart/index.blade.php | 15 + .../report-pie-chart/index.blade.php | 15 + .../simple-line-chart-1/index.blade.php | 15 + .../simple-line-chart-2/index.blade.php | 15 + .../simple-line-chart-3/index.blade.php | 15 + .../simple-line-chart-4/index.blade.php | 15 + .../simple-line-chart/index.blade.php | 15 + .../stacked-bar-chart-1/index.blade.php | 15 + .../stacked-bar-chart/index.blade.php | 15 + .../views/components/top-bar/index.blade.php | 261 ++++ .../vertical-bar-chart/index.blade.php | 15 + resources/views/layouts/base.blade.php | 67 ++ resources/views/layouts/side-menu.blade.php | 157 +++ resources/views/layouts/simple-menu.blade.php | 157 +++ resources/views/layouts/top-menu.blade.php | 128 ++ resources/views/login/main.blade.php | 140 +++ .../pages/dashboard-overview-1.blade.php | 1045 +++++++++++++++++ 31 files changed, 2447 insertions(+) create mode 100644 resources/views/components/calendar/index.blade.php create mode 100644 resources/views/components/dark-mode-switcher/index.blade.php create mode 100644 resources/views/components/donut-chart/index.blade.php create mode 100644 resources/views/components/horizontal-bar-chart/index.blade.php create mode 100644 resources/views/components/leaflet-map/index.blade.php create mode 100644 resources/views/components/line-chart/index.blade.php create mode 100644 resources/views/components/main-color-switcher/index.blade.php create mode 100644 resources/views/components/mobile-menu/index.blade.php create mode 100644 resources/views/components/pie-chart/index.blade.php create mode 100644 resources/views/components/report-bar-chart-1/index.blade.php create mode 100644 resources/views/components/report-bar-chart/index.blade.php create mode 100644 resources/views/components/report-donut-chart-1/index.blade.php create mode 100644 resources/views/components/report-donut-chart-2/index.blade.php create mode 100644 resources/views/components/report-donut-chart/index.blade.php create mode 100644 resources/views/components/report-line-chart/index.blade.php create mode 100644 resources/views/components/report-pie-chart/index.blade.php create mode 100644 resources/views/components/simple-line-chart-1/index.blade.php create mode 100644 resources/views/components/simple-line-chart-2/index.blade.php create mode 100644 resources/views/components/simple-line-chart-3/index.blade.php create mode 100644 resources/views/components/simple-line-chart-4/index.blade.php create mode 100644 resources/views/components/simple-line-chart/index.blade.php create mode 100644 resources/views/components/stacked-bar-chart-1/index.blade.php create mode 100644 resources/views/components/stacked-bar-chart/index.blade.php create mode 100644 resources/views/components/top-bar/index.blade.php create mode 100644 resources/views/components/vertical-bar-chart/index.blade.php create mode 100644 resources/views/layouts/base.blade.php create mode 100644 resources/views/layouts/side-menu.blade.php create mode 100644 resources/views/layouts/simple-menu.blade.php create mode 100644 resources/views/layouts/top-menu.blade.php create mode 100755 resources/views/login/main.blade.php create mode 100755 resources/views/pages/dashboard-overview-1.blade.php diff --git a/resources/views/components/calendar/index.blade.php b/resources/views/components/calendar/index.blade.php new file mode 100644 index 0000000..c1f167d --- /dev/null +++ b/resources/views/components/calendar/index.blade.php @@ -0,0 +1,20 @@ +
class(['full-calendar'])->merge($attributes->whereDoesntStartWith('class')->getAttributes()) }} +>
+ +@once + @push('vendors') + @vite('resources/js/vendor/calendar/index.js') + @vite('resources/js/vendor/calendar/plugins/interaction.js') + @vite('resources/js/vendor/calendar/plugins/day-grid.js') + @vite('resources/js/vendor/calendar/plugins/time-grid.js') + @vite('resources/js/vendor/calendar/plugins/list.js') + @endpush +@endonce + +@once + @push('scripts') + @vite('resources/js/components/calendar/index.js') + @endpush +@endonce diff --git a/resources/views/components/dark-mode-switcher/index.blade.php b/resources/views/components/dark-mode-switcher/index.blade.php new file mode 100644 index 0000000..41dd09d --- /dev/null +++ b/resources/views/components/dark-mode-switcher/index.blade.php @@ -0,0 +1,20 @@ + +
+
Dark Mode
+
+
+ + +@once + @push('scripts') + @vite('resources/js/components/dark-mode-switcher/index.js') + @endpush +@endonce diff --git a/resources/views/components/donut-chart/index.blade.php b/resources/views/components/donut-chart/index.blade.php new file mode 100644 index 0000000..a0d0e65 --- /dev/null +++ b/resources/views/components/donut-chart/index.blade.php @@ -0,0 +1,15 @@ +@props(['width' => 'w-auto', 'height' => 'h-auto']) + +
+ merge($attributes->whereDoesntStartWith('class')->getAttributes()) }} + > + +
+ +@once + @push('scripts') + @vite('resources/js/components/donut-chart/index.js') + @endpush +@endonce diff --git a/resources/views/components/horizontal-bar-chart/index.blade.php b/resources/views/components/horizontal-bar-chart/index.blade.php new file mode 100644 index 0000000..902a92c --- /dev/null +++ b/resources/views/components/horizontal-bar-chart/index.blade.php @@ -0,0 +1,15 @@ +@props(['width' => 'w-auto', 'height' => 'h-auto']) + +
+ merge($attributes->whereDoesntStartWith('class')->getAttributes()) }} + > + +
+ +@once + @push('scripts') + @vite('resources/js/components/horizontal-bar-chart/index.js') + @endpush +@endonce diff --git a/resources/views/components/leaflet-map/index.blade.php b/resources/views/components/leaflet-map/index.blade.php new file mode 100644 index 0000000..560bdda --- /dev/null +++ b/resources/views/components/leaflet-map/index.blade.php @@ -0,0 +1,6 @@ +merge($attributes->whereDoesntStartWith('class')->getAttributes()) }} +/> diff --git a/resources/views/components/line-chart/index.blade.php b/resources/views/components/line-chart/index.blade.php new file mode 100644 index 0000000..60dd976 --- /dev/null +++ b/resources/views/components/line-chart/index.blade.php @@ -0,0 +1,15 @@ +@props(['width' => 'w-auto', 'height' => 'h-auto']) + +
+ merge($attributes->whereDoesntStartWith('class')->getAttributes()) }} + > + +
+ +@once + @push('scripts') + @vite('resources/js/components/line-chart/index.js') + @endpush +@endonce diff --git a/resources/views/components/main-color-switcher/index.blade.php b/resources/views/components/main-color-switcher/index.blade.php new file mode 100644 index 0000000..21da415 --- /dev/null +++ b/resources/views/components/main-color-switcher/index.blade.php @@ -0,0 +1,28 @@ + +
+ + + + + + +
+ diff --git a/resources/views/components/mobile-menu/index.blade.php b/resources/views/components/mobile-menu/index.blade.php new file mode 100644 index 0000000..84da33c --- /dev/null +++ b/resources/views/components/mobile-menu/index.blade.php @@ -0,0 +1,133 @@ + +
+ +
+ + + + +
+
+ + +@once + @push('vendors') + @vite('resources/js/vendor/simplebar/index.js') + @endpush +@endonce + +@once + @push('scripts') + @vite('resources/js/components/mobile-menu/index.js') + @endpush +@endonce diff --git a/resources/views/components/pie-chart/index.blade.php b/resources/views/components/pie-chart/index.blade.php new file mode 100644 index 0000000..c927fe7 --- /dev/null +++ b/resources/views/components/pie-chart/index.blade.php @@ -0,0 +1,15 @@ +@props(['width' => 'w-auto', 'height' => 'h-auto']) + +
+ merge($attributes->whereDoesntStartWith('class')->getAttributes()) }} + > + +
+ +@once + @push('scripts') + @vite('resources/js/components/pie-chart/index.js') + @endpush +@endonce diff --git a/resources/views/components/report-bar-chart-1/index.blade.php b/resources/views/components/report-bar-chart-1/index.blade.php new file mode 100644 index 0000000..b21df44 --- /dev/null +++ b/resources/views/components/report-bar-chart-1/index.blade.php @@ -0,0 +1,15 @@ +@props(['width' => 'w-auto', 'height' => 'h-auto']) + +
+ merge($attributes->whereDoesntStartWith('class')->getAttributes()) }} + > + +
+ +@once + @push('scripts') + @vite('resources/js/components/report-bar-chart-1/index.js') + @endpush +@endonce diff --git a/resources/views/components/report-bar-chart/index.blade.php b/resources/views/components/report-bar-chart/index.blade.php new file mode 100644 index 0000000..8737d72 --- /dev/null +++ b/resources/views/components/report-bar-chart/index.blade.php @@ -0,0 +1,15 @@ +@props(['width' => 'w-auto', 'height' => 'h-auto']) + +
+ merge($attributes->whereDoesntStartWith('class')->getAttributes()) }} + > + +
+ +@once + @push('scripts') + @vite('resources/js/components/report-bar-chart/index.js') + @endpush +@endonce diff --git a/resources/views/components/report-donut-chart-1/index.blade.php b/resources/views/components/report-donut-chart-1/index.blade.php new file mode 100644 index 0000000..b54c22e --- /dev/null +++ b/resources/views/components/report-donut-chart-1/index.blade.php @@ -0,0 +1,15 @@ +@props(['width' => 'w-auto', 'height' => 'h-auto']) + +
+ merge($attributes->whereDoesntStartWith('class')->getAttributes()) }} + > + +
+ +@once + @push('scripts') + @vite('resources/js/components/report-donut-chart-1/index.js') + @endpush +@endonce diff --git a/resources/views/components/report-donut-chart-2/index.blade.php b/resources/views/components/report-donut-chart-2/index.blade.php new file mode 100644 index 0000000..6ffd315 --- /dev/null +++ b/resources/views/components/report-donut-chart-2/index.blade.php @@ -0,0 +1,15 @@ +@props(['width' => 'w-auto', 'height' => 'h-auto']) + +
+ merge($attributes->whereDoesntStartWith('class')->getAttributes()) }} + > + +
+ +@once + @push('scripts') + @vite('resources/js/components/report-donut-chart-2/index.js') + @endpush +@endonce diff --git a/resources/views/components/report-donut-chart/index.blade.php b/resources/views/components/report-donut-chart/index.blade.php new file mode 100644 index 0000000..4325d60 --- /dev/null +++ b/resources/views/components/report-donut-chart/index.blade.php @@ -0,0 +1,15 @@ +@props(['width' => 'w-auto', 'height' => 'h-auto']) + +
+ merge($attributes->whereDoesntStartWith('class')->getAttributes()) }} + > + +
+ +@once + @push('scripts') + @vite('resources/js/components/report-donut-chart/index.js') + @endpush +@endonce diff --git a/resources/views/components/report-line-chart/index.blade.php b/resources/views/components/report-line-chart/index.blade.php new file mode 100644 index 0000000..7563673 --- /dev/null +++ b/resources/views/components/report-line-chart/index.blade.php @@ -0,0 +1,15 @@ +@props(['width' => 'w-auto', 'height' => 'h-auto']) + +
+ merge($attributes->whereDoesntStartWith('class')->getAttributes()) }} + > + +
+ +@once + @push('scripts') + @vite('resources/js/components/report-line-chart/index.js') + @endpush +@endonce diff --git a/resources/views/components/report-pie-chart/index.blade.php b/resources/views/components/report-pie-chart/index.blade.php new file mode 100644 index 0000000..c3b8be0 --- /dev/null +++ b/resources/views/components/report-pie-chart/index.blade.php @@ -0,0 +1,15 @@ +@props(['width' => 'w-auto', 'height' => 'h-auto']) + +
+ merge($attributes->whereDoesntStartWith('class')->getAttributes()) }} + > + +
+ +@once + @push('scripts') + @vite('resources/js/components/report-pie-chart/index.js') + @endpush +@endonce diff --git a/resources/views/components/simple-line-chart-1/index.blade.php b/resources/views/components/simple-line-chart-1/index.blade.php new file mode 100644 index 0000000..827b1e4 --- /dev/null +++ b/resources/views/components/simple-line-chart-1/index.blade.php @@ -0,0 +1,15 @@ +@props(['width' => 'w-auto', 'height' => 'h-auto']) + +
+ merge($attributes->whereDoesntStartWith('class')->getAttributes()) }} + > + +
+ +@once + @push('scripts') + @vite('resources/js/components/simple-line-chart-1/index.js') + @endpush +@endonce diff --git a/resources/views/components/simple-line-chart-2/index.blade.php b/resources/views/components/simple-line-chart-2/index.blade.php new file mode 100644 index 0000000..425b35c --- /dev/null +++ b/resources/views/components/simple-line-chart-2/index.blade.php @@ -0,0 +1,15 @@ +@props(['width' => 'w-auto', 'height' => 'h-auto']) + +
+ merge($attributes->whereDoesntStartWith('class')->getAttributes()) }} + > + +
+ +@once + @push('scripts') + @vite('resources/js/components/simple-line-chart-2/index.js') + @endpush +@endonce diff --git a/resources/views/components/simple-line-chart-3/index.blade.php b/resources/views/components/simple-line-chart-3/index.blade.php new file mode 100644 index 0000000..3fbe216 --- /dev/null +++ b/resources/views/components/simple-line-chart-3/index.blade.php @@ -0,0 +1,15 @@ +@props(['width' => 'w-auto', 'height' => 'h-auto']) + +
+ merge($attributes->whereDoesntStartWith('class')->getAttributes()) }} + > + +
+ +@once + @push('scripts') + @vite('resources/js/components/simple-line-chart-3/index.js') + @endpush +@endonce diff --git a/resources/views/components/simple-line-chart-4/index.blade.php b/resources/views/components/simple-line-chart-4/index.blade.php new file mode 100644 index 0000000..3261b84 --- /dev/null +++ b/resources/views/components/simple-line-chart-4/index.blade.php @@ -0,0 +1,15 @@ +@props(['width' => 'w-auto', 'height' => 'h-auto']) + +
+ merge($attributes->whereDoesntStartWith('class')->getAttributes()) }} + > + +
+ +@once + @push('scripts') + @vite('resources/js/components/simple-line-chart-4/index.js') + @endpush +@endonce diff --git a/resources/views/components/simple-line-chart/index.blade.php b/resources/views/components/simple-line-chart/index.blade.php new file mode 100644 index 0000000..d267bb3 --- /dev/null +++ b/resources/views/components/simple-line-chart/index.blade.php @@ -0,0 +1,15 @@ +@props(['width' => 'w-auto', 'height' => 'h-auto']) + +
+ merge($attributes->whereDoesntStartWith('class')->getAttributes()) }} + > + +
+ +@once + @push('scripts') + @vite('resources/js/components/simple-line-chart/index.js') + @endpush +@endonce diff --git a/resources/views/components/stacked-bar-chart-1/index.blade.php b/resources/views/components/stacked-bar-chart-1/index.blade.php new file mode 100644 index 0000000..1ef3848 --- /dev/null +++ b/resources/views/components/stacked-bar-chart-1/index.blade.php @@ -0,0 +1,15 @@ +@props(['width' => 'w-auto', 'height' => 'h-auto']) + +
+ merge($attributes->whereDoesntStartWith('class')->getAttributes()) }} + > + +
+ +@once + @push('scripts') + @vite('resources/js/components/stacked-bar-chart-1/index.js') + @endpush +@endonce diff --git a/resources/views/components/stacked-bar-chart/index.blade.php b/resources/views/components/stacked-bar-chart/index.blade.php new file mode 100644 index 0000000..01274b2 --- /dev/null +++ b/resources/views/components/stacked-bar-chart/index.blade.php @@ -0,0 +1,15 @@ +@props(['width' => 'w-auto', 'height' => 'h-auto']) + +
+ merge($attributes->whereDoesntStartWith('class')->getAttributes()) }} + > + +
+ +@once + @push('scripts') + @vite('resources/js/components/stacked-bar-chart/index.js') + @endpush +@endonce diff --git a/resources/views/components/top-bar/index.blade.php b/resources/views/components/top-bar/index.blade.php new file mode 100644 index 0000000..3f9032a --- /dev/null +++ b/resources/views/components/top-bar/index.blade.php @@ -0,0 +1,261 @@ + +
+
+ + + + + + Application + + Dashboard + + + + +
+ + + + + +
+ + + + + + + +
Notifications
+ @foreach (array_slice($fakers, 0, 5) as $fakerKey => $faker) +
$fakerKey, + ])> +
+ Midone Tailwind HTML Admin Template +
+
+
+
+
+ + {{ $faker['users'][0]['name'] }} + +
+ {{ $faker['times'][0] }} +
+
+
+ {{ $faker['news'][0]['short_content'] }} +
+
+
+ @endforeach +
+
+ + + + + Midone Tailwind HTML Admin Template + + + +
{{ $fakers[0]['users'][0]['name'] }}
+
+ {{ $fakers[0]['jobs'][0] }} +
+
+ + + Profile + + + Add Account + + + Reset Password + + + Help + + + + Logout + +
+
+ +
+
+ + +@once + @push('scripts') + @vite('resources/js/components/top-bar/index.js') + @endpush +@endonce diff --git a/resources/views/components/vertical-bar-chart/index.blade.php b/resources/views/components/vertical-bar-chart/index.blade.php new file mode 100644 index 0000000..8484fd8 --- /dev/null +++ b/resources/views/components/vertical-bar-chart/index.blade.php @@ -0,0 +1,15 @@ +@props(['width' => 'w-auto', 'height' => 'h-auto']) + +
+ merge($attributes->whereDoesntStartWith('class')->getAttributes()) }} + > + +
+ +@once + @push('scripts') + @vite('resources/js/components/vertical-bar-chart/index.js') + @endpush +@endonce diff --git a/resources/views/layouts/base.blade.php b/resources/views/layouts/base.blade.php new file mode 100644 index 0000000..28c99bd --- /dev/null +++ b/resources/views/layouts/base.blade.php @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + @yield('head') + + + @vite('resources/css/app.css') + @stack('styles') + + + + + + @yield('content') + + @vite('resources/js/app.js') + + + @stack('vendors') + + + + @stack('scripts') + + + + diff --git a/resources/views/layouts/side-menu.blade.php b/resources/views/layouts/side-menu.blade.php new file mode 100644 index 0000000..f77042f --- /dev/null +++ b/resources/views/layouts/side-menu.blade.php @@ -0,0 +1,157 @@ +@extends('../layouts/base') + +@section('head') + @yield('subhead') +@endsection + +@section('content') +
+ + + + +
+
+ + + + +
+ @yield('subcontent') +
+ +
+
+
+@endsection + +@once + @push('scripts') + @vite('resources/js/vendor/tippy/index.js') + @endpush +@endonce + +@once + @push('scripts') + @vite('resources/js/layouts/side-menu/index.js') + @endpush +@endonce diff --git a/resources/views/layouts/simple-menu.blade.php b/resources/views/layouts/simple-menu.blade.php new file mode 100644 index 0000000..b01e8a3 --- /dev/null +++ b/resources/views/layouts/simple-menu.blade.php @@ -0,0 +1,157 @@ +@extends('../layouts/base') + +@section('head') + @yield('subhead') +@endsection + +@section('content') +
+ + + + +
+
+ + + + +
+ @yield('subcontent') +
+ +
+
+
+@endsection + +@once + @push('scripts') + @vite('resources/js/vendor/tippy/index.js') + @endpush +@endonce + +@once + @push('scripts') + @vite('resources/js/layouts/side-menu/index.js') + @endpush +@endonce diff --git a/resources/views/layouts/top-menu.blade.php b/resources/views/layouts/top-menu.blade.php new file mode 100644 index 0000000..9d9ecd2 --- /dev/null +++ b/resources/views/layouts/top-menu.blade.php @@ -0,0 +1,128 @@ +@extends('../layouts/base') + +@section('head') + @yield('subhead') +@endsection + +@section('content') +
+ + + + + + + + +
+
+ +
+ @yield('subcontent') +
+ +
+
+ +
+@endsection + +@once + @push('scripts') + @vite('resources/js/components/top-bar/index.js') + @endpush +@endonce diff --git a/resources/views/login/main.blade.php b/resources/views/login/main.blade.php new file mode 100755 index 0000000..e987d84 --- /dev/null +++ b/resources/views/login/main.blade.php @@ -0,0 +1,140 @@ +@extends('../layouts/' . $layout) + +@section('head') + Login - Icewall - Tailwind HTML Admin Template +@endsection + +@section('content') +
+
+
+ + + + +
+
+

+ Sign In +

+
+ A few more clicks to sign in to your account. Manage all your + e-commerce accounts in one place +
+
+
+
+
+
+ + +
+ Forgot Password? +
+
+ + Login + + + Register + +
+
+ By signin up, you agree to our + + Terms and Conditions + + & + + Privacy Policy + +
+
+
+ +
+
+
+@endsection + +@once + @push('scripts') + @vite('resources/js/pages/login/index.js') + @endpush +@endonce diff --git a/resources/views/pages/dashboard-overview-1.blade.php b/resources/views/pages/dashboard-overview-1.blade.php new file mode 100755 index 0000000..ca7575d --- /dev/null +++ b/resources/views/pages/dashboard-overview-1.blade.php @@ -0,0 +1,1045 @@ +@extends('../layouts/' . $layout) + +@section('subhead') + Dashboard - Midone - Tailwind HTML Admin Template +@endsection + +@section('subcontent') +
+
+
+ +
+
+

General Report

+ + Reload Data + +
+
+
+
+
+
+ +
+ + 33% + + +
+
+
4.710
+
Item Sales
+
+
+
+
+
+
+
+ +
+ + 2% + + +
+
+
3.721
+
New Orders
+
+
+
+
+
+
+
+ +
+ + 12% + + +
+
+
2.149
+
+ Total Products +
+
+
+
+
+
+
+
+ +
+ + 22% + + +
+
+
152.040
+
+ Unique Visitor +
+
+
+
+
+
+ + +
+
+

Sales Report

+
+ + +
+
+
+
+
+
+
+ $15,000 +
+
This Month
+
+
+
+
+
+ $10,000 +
+
Last Month
+
+
+ + + Filter by Category + + + + PC & Laptop + Smartphone + Electronic + Photography + Sport + + +
+
+ +
+
+
+ + +
+
+

Weekly Top Seller

+ Show More +
+
+
+ +
+
+
+
+ 17 - 30 Years old + 62% +
+
+
+ 31 - 50 Years old + 33% +
+
+
+ >= 50 Years old + 10% +
+
+
+
+ + +
+
+

Sales Report

+ Show More +
+
+
+ +
+
+
+
+ 17 - 30 Years old + 62% +
+
+
+ 31 - 50 Years old + 33% +
+
+
+ >= 50 Years old + 10% +
+
+
+
+ + +
+
+

Official Store

+
+ + +
+
+
+
+ 250 Official stores in 21 countries, click the marker to see + location details. +
+ +
+
+ + +
+
+

+ Weekly Best Sellers +

+
+
+ @foreach (array_slice($fakers, 0, 4) as $faker) +
+
+
+ Midone Tailwind HTML Admin Template +
+
+
{{ $faker['users'][0]['name'] }}
+
+ {{ $faker['dates'][0] }} +
+
+
+ 137 Sales +
+
+
+ @endforeach + + View More + +
+
+ + +
+
+
+
+
+
Target Sales
+
300 Sales
+
+
+ +
+ 20% +
+
+
+
+
+
+
+
+
+ Social Media +
+
+ 320 Followers +
+
+
+ +
+
+
+
+
+
+
+
New Products
+
1450 Products
+
+
+ +
+ 45% +
+
+
+
+
+
+
+
+
Posted Ads
+
+ 180 Campaign +
+
+
+ +
+
+
+
+ + +
+
+

+ Weekly Top Products +

+
+ + + + +
+
+
+ + + + + IMAGES + + + PRODUCT NAME + + + STOCK + + + STATUS + + + ACTIONS + + + + + @foreach (array_slice($fakers, 0, 4) as $faker) + + +
+
+ +
+
+ +
+
+ +
+
+
+ + + {{ $faker['products'][0]['name'] }} + +
+ {{ $faker['products'][0]['category'] }} +
+
+ + {{ $faker['stocks'][0] }} + + +
$faker['true_false'][0], + 'text-danger' => !$faker['true_false'][0], + ])> + + {{ $faker['true_false'][0] ? 'Active' : 'Inactive' }} +
+
+ + + +
+ @endforeach +
+
+
+
+ + + + + + + + ... + 1 + 2 + 3 + ... + + + + + + + + + + + + + +
+
+ +
+
+
+
+
+ +
+
+

Transactions

+
+
+ @foreach (array_slice($fakers, 0, 5) as $faker) +
+
+
+ Midone Tailwind HTML Admin Template +
+
+
{{ $faker['users'][0]['name'] }}
+
+ {{ $faker['dates'][0] }} +
+
+
$faker['true_false'][0], + 'text-danger' => !$faker['true_false'][0], + ])> + {{ $faker['true_false'][0] ? '+' : '-' }}${{ $faker['totals'][0] }} +
+
+
+ @endforeach + + View More + +
+
+ + +
+
+

+ Recent Activities +

+ Show More +
+
+
+
+
+ Midone Tailwind HTML Admin Template +
+
+
+
+
+ {{ $fakers[9]['users'][0]['name'] }} +
+
07:00 PM
+
+
Has joined the team
+
+
+
+
+
+ Midone Tailwind HTML Admin Template +
+
+
+
+
+ {{ $fakers[8]['users'][0]['name'] }} +
+
07:00 PM
+
+
+
Added 3 new photos
+
+ + Midone Tailwind HTML Admin Template + + + Midone Tailwind HTML Admin Template + + + Midone Tailwind HTML Admin Template + +
+
+
+
+
+ 12 November +
+
+
+
+ Midone Tailwind HTML Admin Template +
+
+
+
+
+ {{ $fakers[7]['users'][0]['name'] }} +
+
07:00 PM
+
+
+ Has changed + + {{ $fakers[7]['products'][0]['name'] }} + + price and description +
+
+
+
+
+
+ Midone Tailwind HTML Admin Template +
+
+
+
+
+ {{ $fakers[6]['users'][0]['name'] }} +
+
07:00 PM
+
+
+ Has changed + + {{ $fakers[6]['products'][0]['name'] }} + + description +
+
+
+
+
+ + +
+
+

+ Important Notes +

+ + + + + + +
+
+
+ +
+
+ Lorem Ipsum is simply dummy text +
+
20 Hours ago
+
+ Lorem Ipsum is simply dummy text of the printing and + typesetting industry. Lorem Ipsum has been the industry's + standard dummy text ever since the 1500s. +
+
+ + View Notes + + + Dismiss + +
+
+
+
+ Lorem Ipsum is simply dummy text +
+
20 Hours ago
+
+ Lorem Ipsum is simply dummy text of the printing and + typesetting industry. Lorem Ipsum has been the industry's + standard dummy text ever since the 1500s. +
+
+ + View Notes + + + Dismiss + +
+
+
+
+ Lorem Ipsum is simply dummy text +
+
20 Hours ago
+
+ Lorem Ipsum is simply dummy text of the printing and + typesetting industry. Lorem Ipsum has been the industry's + standard dummy text ever since the 1500s. +
+
+ + View Notes + + + Dismiss + +
+
+
+
+
+
+ + +
+
+

Schedules

+ + Add New Schedules + +
+
+
+
+
+ +
April
+ +
+
+
Su
+
Mo
+
Tu
+
We
+
Th
+
Fr
+
Sa
+
29
+
30
+
31
+
1
+
2
+
3
+
4
+
5
+
+ 6 +
+
7
+
+ 8 +
+
9
+
10
+
11
+
12
+
13
+
14
+
15
+
16
+
17
+
18
+
19
+
20
+
21
+
22
+
+ 23 +
+
24
+
25
+
26
+
+ 27 +
+
28
+
29
+
30
+
1
+
2
+
3
+
4
+
5
+
6
+
7
+
8
+
9
+
+
+
+
+
+ UI/UX Workshop + 23th +
+
+
+ VueJs Frontend Development + 10th +
+
+
+ Laravel Rest API + 31th +
+
+
+
+
+ +
+
+
+
+@endsection