With the introduction of Laravel 5 and the adoption PHPDotenv, Laravel environment variables have become easier to use than ever before. In today’s tutorial I’ll walk you through how to get started using environment variables in your proj
In creating our PHP String Helper Functions, we were able to define four useful string helper functions to use in our projects. Recall we had a split_string() function, a find_between() function, a find_all() function, and a delete() function. They&r
If you know the name Douglas Crockford, you know JSON. Mr Crockford is a Chuck Norris of sorts in the Javascript world and created the JSON standard. It stands for JavaScript Object Notation and it provides a great way to share data between languages
There’s a really neat feature in Laravel that often gets overlooked because of the feature’s complicated sounding name. We’re talking about accessors and mutators.
What exactly are accessors and mutators?
Accessors: Format som
When you think about authentication and authorization checks on users of your system, the first things that come to mind are usually the typical role-based access control types: groups, permissions, passwords, etc. Most RBAC systems out there hard-co
In this article i will talk about sending pushing notifications to mobile devices with laravel ! i will be doing this by using a laravel package called Laravel Push Notification which allows us send push notication ! one good thing baout this package
A developer usually must face two types of projects: Applications and applications, as follows:
For applications, I intend something that you can do, maybe in a quick way, with some workarounds and some hacks, here and there. Also, I know that you
In this tutorial we will learn how to use laravel Socialite that comes out of box in laravel ! stuffs we will be doing is :
Installing Laravel Socialite
Creating an app on your social network of choice
Logging in the user
Storing the user in yo
Checkout this tutorial if you want create a simple crud application . further in this tutorial we will learn how to generate generate CRUD directly via command line in laravel by using a new laravel package called Laravel 5 CRUD Generator
If you know a couple of things about good development and best practices, you have probably heard about software design patterns.
You can define them as useful solution templates for a certain kind of problem, or to be more precise:
In software