Laravel 8 queries Tips 2 Ram Pukar - 9:28 AM 0 Edit $modelBanner = Banner::whereRaw("delete_flag= 0 AND visible= '0'")->get() Output: select * from `banners` where del...
Useful resource Ram Pukar - 11:01 PM 0 Edit GIT: -- https://github.com/chubin/wttr.in UI/UX: v4 -- Realtime colors: https://realtimecolors.com -- Font Pair: https://www.fontpair.co/a...
UI/UX Resources Ram Pukar - 5:25 AM 0 Edit NOTE: v1 -- icons.getbootstrap.com/ -- boxicons.com/ -- github.com/biati-digital/glightbox -- remixicon.com/ -- swiperjs.com/ -- michalsni...
Laravel 10 With Breeze Authentication Ram Pukar - 10:28 PM 0 Edit Environment requirement -- PHP 8.0.30 -- node v18.16.0 -- laravel 10 1. Create your project. -- composer create-project laravel/l...
Laravel 10 With Tailwindcss install and configuration Ram Pukar - 10:04 PM 0 Edit Environment requirement -- PHP 8.0.30 -- node v18.16.0 -- laravel 10 1. Create your project. -- composer create-project laravel/lar...
Fix: VPN Error ” A Connection To The Remote Computer Could Not Be Established” In Windows 10 / 11 Ram Pukar - 8:14 PM 0 Edit Screen Shot. Source: https://thegeekpage.com/fix-vpn-error-a-connection-to-the-remote-computer-could-not-be-established-in-windows-10/
Hierarchy SQL Ram Pukar - 10:17 PM 0 Edit SQL Question: Table Design: SQL Answer: WITH RECURSIVE ctex AS ( SELECT id, id AS emp_hierarchy, full_name FROM mi_staff UNION ALL SEL...