A place where all members can share their Laravel & PHP tutorials, links, news, packages, etc.

Create New Post Contact Us

Laravel 5.1 Gravatar Plugin

Ok, now that I have my fresh install of Laravel 5.1, I’m going to do more tutorials on this blog. For now, I’m going to start with something extremely simple, adding a Gravatar to your nav bar.

This is super simple thanks to the team

Sending data via Pusher in a Laravel Application

Over the last couple of weeks we’ve been adding Pusher to a Laravel application.

First, we set up the Client for making requests to Pusher and the Storage to store the currently active users in Setting up Pusher in a Laravel Application.

Laravel as an Intermediary

If you are anything like me, you view new projects as an opportunity to stretch your abilities, tackle a challenge, and improve your coding. This blog entry is an attempt to share a few items that stood out to me on one of Zaengle's Laravel inte

PHP 7 is now available! Laravel folks, get it now!

2015 has been an important year for PHP. Eleven years after its 5.0 release, a new major version is finally coming our way! PHP 7 is now available for download!

PHP 7 has many new language features and an impressive performance boost. It is up to

Upload files to S3 and generate previews using Laravel

I recently put together a PHP client library for FilePreviews and immediately thought about putting together a blog post on how I’d use it. After 6 years, according to this repo, of not writing a single line of PHP, I looked into Laravel since

Laravel 5 simple search box using GET method

First of all, I know there are many ways to do this, and this might not be the best way to do it.

So what we are going to do is to add a search box text field in the upper left side of our table. Definitely it will search for any records containin

Creating Dynamic Dropdown in Laravel 5

There are times that you want to populate your input select based on another input selection. For instance, in State-City relationship where State has many City. So each State has its own City to address with. In your select input you don’t wan

Laravel Tactician — Command bus for laravel 5.1

If you like the Command bus stuff, you probably miss the commands in laravel, after the upgrade to 5.1 it was renamed to Jobs and even after that they stay really useful. However, there are some other approaches to this architecture and one of them

Flash Messages in Laravel 5

This lesson covered some basic steps in displaying different flash message styles in your Laravel apps. First Step: Creating Flash Message in the Controller

public function store(OfficeRequest $request) { Office::create($request

50 Laravel tricks

An awesome collection of Laravel tricks shared by Yitzchok Willroth aka Coderabbi at php[world]. He even includes some Laravel 5.2 specific tips.