Category: Laravel
Queues in Laravel
Danyal November 22, 2022
Sometimes individual process in a workflow takes longer time & increases the response time of…
Posted in Laravel Tagged laravel, php, queues, technology
How to install all required PHP extensions for Laravel?
Danyal August 15, 2022
Problem This problem can occur while creating Laravel project via composer and the system is…
Laravel: Login with email or phone
Danyal March 18, 2021
How to login with phone or email in Laravel passport?
Posted in Code snippets, Laravel, PHP, Programming Tagged Authentication, LaravelPassport, login
Laravel: Raw query for between operator
Danyal December 8, 2020
Example for raw query of between operator.
Laravel: update vs fill
Danyal December 7, 2020
Let’s take a look at the difference between update and fill of Eloquent methods.
Tip: Default current timestamp to Laravel migration
Danyal November 10, 2020
Quick tip of the day, how to add default datetime to migration.
Posted in Laravel Tagged database, migration, tip of the day
Traits in PHP and Laravel?
Danyal August 6, 2020
This is a fact that in PHP you can only have single inheritance. That means a class can inherit from only one other class.
Posted in Laravel, PHP Tagged best practice, clean code, coding, OOP, php