From 16fa54d265c325ad5c2ed5b19a19b611e5a8371e Mon Sep 17 00:00:00 2001 From: Vishal Ribdiya Date: Thu, 14 Jul 2022 14:14:55 +0530 Subject: [PATCH 1/2] refactor: refactored the app.blade --- adminlte-stubs/layouts/app.blade.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/adminlte-stubs/layouts/app.blade.php b/adminlte-stubs/layouts/app.blade.php index 1e819ef..7b9c30f 100644 --- a/adminlte-stubs/layouts/app.blade.php +++ b/adminlte-stubs/layouts/app.blade.php @@ -11,7 +11,7 @@ - @yield('third_party_stylesheets') + @stack('third_party_stylesheets') @stack('page_css') @@ -81,7 +81,7 @@ class="img-circle elevation-2" -@yield('third_party_scripts') +@stack('third_party_scripts') @stack('page_scripts') From acb429588073b5f3a67d267d60ef11ebb65db9b9 Mon Sep 17 00:00:00 2001 From: Vishal Ribdiya Date: Thu, 14 Jul 2022 15:09:08 +0530 Subject: [PATCH 2/2] refactor: removed the defer --- adminlte-stubs/layouts/app.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adminlte-stubs/layouts/app.blade.php b/adminlte-stubs/layouts/app.blade.php index 7b9c30f..6ee4c04 100644 --- a/adminlte-stubs/layouts/app.blade.php +++ b/adminlte-stubs/layouts/app.blade.php @@ -79,7 +79,7 @@ class="img-circle elevation-2" - + @stack('third_party_scripts')