Category: Web Development
New Features in Laravel 10.4
With the release of version 10.4, the Laravel team added the File::json() function, changed existing HasMany connections to HasOne relationships, added a new test response assertion, and more. File::json() method The File::json() function was added by Laravel 10.4 to make
What are an EXE and a DLL?
One kind of executable file is an EXE file. When opened, its primary function is to start a program. This is accomplished by executing specific scripts or by utilizing some of the data contained in the file. When you start
PDF Viewer Using Web Viewer
Pdf viewer is used for viewing pdf using javascript. We can Add a PDF.js viewer to any application with out-of-the-box annotations, PDF form filling, and signing. A free in-browser PDF viewer is PDF.js Express Viewer. It contains capabilities like text
Send SMS using TWILIO in Laravel
To put it into action, take the following steps: Install the TWILIO package using the command given below: composer require twilio/sdk Now, we require three credentials from the Twilio platform (https://www.twilio.com/console and https://www.twilio.com/console/phone-numbers/incoming). Account SID Auth Token Phone Number Now
useRouter in NextJs
Routing – The file-system-based router in Next.js is based on the idea of pages. A file becomes immediately accessible as a route when it is added to the page’s directory. The majority of typical patterns can be defined using the
Slack Integration With Laravel
Firstly, create a slack channel with the (composer requires laravel/slack-notification-channel ) command. Create a notification in the laravel project with the command (php artisan make: notification SlackNotification). Create toSlack method in the SlackNotification. Add routeNotificationForSlack in the user model to
Javascript | Another alternative to using JSON.stringify, especially for large objects
JSON.stringify function converts an object into a string format. It works well for small objects. A small object means it has fewer elements or fewer nested elements. But if an object is very long and very much nested also, then
Async and Await in C#
Asynchronous programming has become increasingly important in modern software development, and C# has been at the forefront of this trend. One of the key features of C# that make asynchronous programming easier is the async and await keywords. In this
How To Setup & Install Selenium With Python & Pycharm
Install Python on windows Install Selenium with Python Configure Pycharm with Selenium How to install Python on windows. There is a website to download Python. https://www.python.org https://www.python.org/downloads/ Here, click on “Download Python 3.10.7”. This is the latest version of Python.