{{-- Author : Theshan Thanushka, Date: 2024-01-24, comment : updated the fontawesome version. --}} {{-- @if(in_array(request()->route()->getName(), [ 'willsEstate'])) @endif --}} {{-- Author : Gurupriya Solanki Description : Added Random Versioning to remove cache. No need to update version if we change anything in css. Update Date : 05 June 2024 --}} @php $numberOfDigits = 4; // Specify the desired count of digits for the random number $randomNumber = str_pad(rand(0, pow(10, $numberOfDigits) - 1), $numberOfDigits, '0', STR_PAD_LEFT); @endphp {{-- START - Enable Dark And Light Mode Author : Gurupriya Solanki Description : Added Dark And Light Mode CSS By Default it will be Dark And Change by js Update Date : 28 June 2024 --}} {{--Enable Dark And Light Mode --}} @yield('css')
@yield('content') @if (!in_array(request()->route()->getName(), ['login', 'register', 'password.request'])) @endif @if(request()->routeIs('orderHistory') || request()->routeIs('userhomePage')) @endif {{-- START - Enable Dark And Light Mode Author : Gurupriya Solanki Description : Added Dark And Light Mode jS By Default it will be Dark And Change by this jS Update Date : 28 June 2024 --}} {{-- END - Enable Dark And Light Mode --}} @if(isset(auth()->user()->id)) @else @endif @yield('page-js')