From aa9affa16ded6d4f1c5668eb2c06a9091bba834f Mon Sep 17 00:00:00 2001 From: lukibeg Date: Sat, 15 Nov 2025 19:55:53 -0300 Subject: [PATCH] =?UTF-8?q?feat|in-progress:=20Adiciona=20componente=20de?= =?UTF-8?q?=20exclus=C3=A3o=20de=20cliente?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/View/Components/AreYouSure.php | 26 ++ .../views/components/are-you-sure.blade.php | 87 +++++++ resources/views/dashboard.blade.php | 226 +++++++++--------- 3 files changed, 232 insertions(+), 107 deletions(-) create mode 100644 app/View/Components/AreYouSure.php create mode 100644 resources/views/components/are-you-sure.blade.php diff --git a/app/View/Components/AreYouSure.php b/app/View/Components/AreYouSure.php new file mode 100644 index 0000000..5966c9c --- /dev/null +++ b/app/View/Components/AreYouSure.php @@ -0,0 +1,26 @@ + +
+ + + +
\ No newline at end of file diff --git a/resources/views/dashboard.blade.php b/resources/views/dashboard.blade.php index 0919ae8..05f87b3 100644 --- a/resources/views/dashboard.blade.php +++ b/resources/views/dashboard.blade.php @@ -1,120 +1,132 @@ @extends('layouts.app') + @yield('title', 'Nexus - Dashboard') @section('content') - - - + + + + -
+
-
-
-
- Avatar do Cliente + @foreach ($clients as $client) +
+
+
+ Avatar do Cliente +
+
+ + + + +
+
+
+ {{ $client->name }} +
-
- + @endforeach - +
+
+
+ Avatar do Cliente +
+
+ + + +
+
+
+ Cliente 2
-
- Cliente 1 + +
+
+
+ Avatar do Cliente +
+
+ + + +
+
+
+ Cliente 3 +
+ +
+
+
+ Avatar do Cliente +
+
+ + + +
+
+
+ Cliente 4 +
+
+
-
-
-
- Avatar do Cliente -
-
- - - -
-
-
- Cliente 2 -
-
- -
-
-
- Avatar do Cliente -
-
- - - -
-
-
- Cliente 3 -
-
- -
-
-
- Avatar do Cliente -
-
- - - -
-
-
- Cliente 4 -
-
- -
- @endsection \ No newline at end of file