//

SQL Queries

SELECT Fetch all records of a table Fetch data from specific columns of all records of a table Fetch specific records of a table using “WHERE” Fetch specific records on the condition of a single column using “IN” Group specific records on the basis of the column using “GROUP BY” Order the fetched records using […]

Accessors & Mutators laravel

What are Mutators? Mutators are used to modify the data before storing it in DB. It will use in several scenarios like if we want to capitalize our data or add any other string to it, we can do that with the help of the mutators. What are Accessors? Accessors are used to modify the […]