Complete backup and restore WordPress
Backup and restore WordPress can be done easily via several already-made plugins. However, I want to do it the easy way without installing any...
Quick Guide to handle Laravel Eloquent Many-to-Many relationship
Dealing with database is hard, and it is harder when it comes down to manage relationships. Laravel makes it easy for developers. I will...
Download and convert MacOS Mojave installer into ISO file
From MacOS Mojave 10.14, Apple doesn't provide the DMG file directly, so it is difficult for us to setup a bootable disk for Hackintosh...
Laravel Fact – Make computed attributes for Eloquent models
Beside auto-generated attributes mapping from database schema, Laravel also provides developers ability to make computed attributes for Eloquent models.
Make computed attributes for Eloquent
To state...
Laravel Fact – Eloquent Model find() can return multiple records
To get a database record from Laravel Eloquent, we make use of Model find() method to lookup. However, most of developers only know one usage to...