diff --git a/resources/css/tailwind.css b/resources/css/tailwind.css index bceb341a..fb4462a8 100644 --- a/resources/css/tailwind.css +++ b/resources/css/tailwind.css @@ -28,4 +28,8 @@ .grid-view-sidebar { @apply grid grid-cols-3 content-start md:grid-cols-2 lg:grid-cols-3 lg:gap-2 xl:grid-cols-4 xl:gap-4 2xl:grid-cols-5; +} + +.page-link { + @apply block flex h-8 w-8 cursor-pointer items-center justify-center rounded-lg text-sm font-bold transition duration-200 hover:bg-light-background; } \ No newline at end of file diff --git a/resources/js/components/Others/Tables/DatatableWrapper.vue b/resources/js/components/Others/Tables/DatatableWrapper.vue index 12af8040..ee552629 100644 --- a/resources/js/components/Others/Tables/DatatableWrapper.vue +++ b/resources/js/components/Others/Tables/DatatableWrapper.vue @@ -295,9 +295,3 @@ export default { }, } - - diff --git a/resources/js/views/Admin/AppSettings/AppSettingsTabs/SignInUp.vue b/resources/js/views/Admin/AppSettings/AppSettingsTabs/SignInUp.vue index 07d6a511..b04286cd 100644 --- a/resources/js/views/Admin/AppSettings/AppSettingsTabs/SignInUp.vue +++ b/resources/js/views/Admin/AppSettings/AppSettingsTabs/SignInUp.vue @@ -49,6 +49,14 @@ /> + + + +
+ + + +
+ + + +
createNewUser)($data); + $newUser = ($this->createNewUser)($data); // Login user - $this->guard->login($user->first()); + $this->guard->login($newUser); return redirect()->to('/platform/files'); }