In this article, we will see how to create middleware for XSS protection in laravel 8. Cross-site scripting is a type of security vulnerability that can be found in some web applications....
Laravel PHPIn this article, we will see how to generate a pdf and send an email in laravel 8. For generating PDF files we will use the "laravel-dompdf" package also we wil...
Laravel PHPIn this article, we see how to fix the cURL error 60 SSL certificate problem. cURL error 60: SSL certificate problem: unable to get local issuer certificate error occurs when we try to ca...
Laravel PHPIn this article, we will see laravel 8 datatables keeping selected page numbers after the callback. In the datatable page, the number is not saved when you reload the page. So, we need to keep...
Laravel PHP jQueryIn this article, we will see laravel 8 order by query example. how to use order by in laravel 8.The orderBy method allows you to sort the results of the query by a given colu...
In this article, we will see laravel 8 group by query example. how to use group by in laravel 8. As you might expect, the groupBy and having metho...
In this article, we will see laravel 8 left join query example. laravel left join eloquent returns all rows from the left table, even if there are no matches in the right table. The result is...
Laravel PHP MySQLIn this article, we will learn about laravel 8 inner join query example. Also, see how to join two tables in laravel 8. In laravel you can use group by query same as PHP. So, we will also see a que...
Laravel PHP MySQLIn this article, we will explore Laravel 8/9/10 many-to-many polymorphic relationships. These relationships are more complex than morph one and morph many relationships and can be utilized in Larav...
Laravel PHP MySQLIn this article, we will learn about laravel 8 one to many polymorphic relationships. A one-to-many polymorphic relation is similar to a typical one-to-many relation. The child model...
Laravel PHP MySQL