Blogs tagged with Laravel.

How to make WordPress-like custom fields for Laravel models
Have you ever run into a situation where you want to be able to dynamically store data along with your Laravel Model, without having to add an (excessive) amount of columns to your database table? I sure have. I think there a...
Read more
Using Browsershot for PDF generation
Yesterday I was trying to tweak the invoice design for Addrow, a SaaS application I made with Laravel. I have basically two templates for the invoice, one for web display...
Read more
How to validate object ownership in Laravel
There are several ways in which you can determine if a user owns an object in your Laravel application. This post will give you a couple of examples how you could implement this check within your form request validations.
Read more
A simple way of implementing user bookmarks in Laravel
For a recent project, I needed a way for users to bookmark posts. Other then posts, I imagine the application to have other objects in the future too. So, with this in mind, I decided to build a solution which can handle other objects...
Read more
Using ngrok with Laravel
If you like to temporarily expose your local development environment, you can do this with ngrok. If you use Laravel Valet for development, you already have ngrok...
Read more
Making WordPress passwords work in Laravel
When you are exporting WordPress users to a Laravel Application, you’ll notice that the hashed password from WordPress will not authenticate in Laravel. Now instead of your users having to reset the password, you can follow the...
Read more