If you are uploading the large image file in the server then it will take up extra spaces of the storage. Then why don’t we resize image before upload. So, that it will reduce image size and will occupy less storage. If the webpage contains the low size image, then it will load fast in the webserver. So, if you resize image before upload, it will make your webpage optimized and fast […]
How to Implement Pagination in Laravel 6 with Example
Displaying a large number of records in a single table is not a big issue. But managing these records properly in a single table can be an issue. Actually, I am talking about the number of rows that will be displayed in a single table. This will become cumbersome of the data within a single […]
Laravel 6 Custom Login and Registration with Session
Have you faced difficulties in creating a custom Laravel login and registration system? If yes, then please follow this post very carefully. Today, I am going to show you how you can create a custom Laravel 6 login and registration. In this procedure, I am not going to use the Laravel predefined user Auth. The […]
How to Implement Yajra Datatables in Laravel 6
Are you stuck in managing a large number of data in a table? Then why don’t you go with the Datatables? Datatable is an open-source library that is used to manage the data. It provides pagination, sorting, searching, etc in the tables. Without using Datatable, you can have a kind of complexity to apply these […]
How to Use AJAX in Laravel 6 with ToDo Application
When you want to submit a form in Laravel 6 without reloading the page then you will have to use AJAX. It prevents the page reload when you request to the server for the data. That means when you want to send and receive data from the server it will pass the data asynchronously. AJAX […]
How to Send Email in Laravel 6 Via Gmail Using SMTP
Sending an email is not a difficult task in Laravel 6. In comparison to the normal PHP script, Laravel provides libraries and classes. Laravel has prefaced the Mailable class for sending emails. There are some API based drivers for sending emails in the Laravel 6. These are much faster and secure to send emails. Today, […]
Laravel 6 REST API For ToDo Application with Passport Auth
Laravel Passport authentication is really a powerful feature. It enables an authentication system with a token. On the basis of the token, it manages all the HTTP requests which are using the web services. The token identifies the user whether it is valid or not. In other words, every single request that is trying to […]
How to Integrate Laravel 6 Application with Firebase
Google Firebase is a realtime database. It manages the database operations in the realtime. Basically, it is a NoSQL database that stores data in the JSON format. The JSON data is a combination of key/value pairs. So, there is no restriction to store data in the Firebase in real-time. However, in the Laravel, it is […]
RESTful APIs in Laravel 6 with Passport Authentication
REST or RESTful is a web service that is used to send requests to the server for accessing the web resources. It stands for REpresentational State Transfer which returns the response with the stateless operation. A RESTful API uses HTTP Requests to perform the GET, POST, PUT, and DELETE operations on the data. These requests […]
Laravel 6 Login and Registration with Authentication
User authentication and data security access are the most important key for any database system. If you are creating an application and the login access of that application is not much secure and authentic. Then someone can manipulate or access your data. So, to prevent these types of un-authentic access, we will need to create […]