Mohit Mehta·Apr 15, 2022Multiple PHP versions in single XAMPP on WindowsNow a days everybody requires multiple PHP versions for different projects. In the Linux system, it is very easy to install & run multiple…
Mohit Mehta·Jan 2, 2022Laravel where date betweenLaravel Eloquent has built-in function whereBetween to get the records between two dates but there is problem here. This method does not…
Mohit Mehta·Dec 16, 2020Laravel .env ExposedWhen it comes to host a Laravel project on shared hosting, many of the developers finds a difficulty. So they just apply any random…A response icon2A response icon2
Mohit Mehta·Sep 20, 2020React Native Dynamic Drawer ItemsI have created react native app with dynamic drawer items. Currently drawer items are fetched from local JSON file. This can be also used…
Mohit Mehta·Sep 20, 2020React Native LoaderLoader is very essential component in every application. Loader should be light-weight, attractive and should cover whole screen also…
Mohit Mehta·Sep 20, 2020Laravel Force User LogoutMany times we store data in user session. Now what if that session data is updated and we want to show updated data to user ? Because user…A response icon1A response icon1
Mohit Mehta·Jul 7, 2019Laravel Backup and FlushNote*: Please don't use this code/article to harm any people/project.
Mohit Mehta·Mar 5, 2019Shopify Create Sitemap PageThe Sitemaps informs search engines about URLs on a website that are available for crawling. So it’s very important for better SEO. Foe…A response icon2A response icon2
Mohit Mehta·Mar 1, 2019Laravel export data to Excel/CSVMany times we need data to be exported in CSV or Excel file. There are many packages available to export data but we can also do this by…
Mohit Mehta·Feb 18, 2019Laravel create helper which can be accessed anywhereMany times we need some general functions which needs to be called from many controllers or blades. So creating same function in multiple…