Laracon Online 2018 was held last year in February. It featured cool talks by Chris Fidao, Wes Bos and of course Laravel creator Taylor Otwell. In tandem with t...
I recently had to build the backend of an in-house tool for staff at my workplace WebCoupers LLC and needed to manage different user levels(Admins and Users in...
vue-laravel-paginex will provide you the ability to easily create pagination from Laravel Pagination object. You can customize your pagination styles by overwri...
Providing developers and businesses a reliable, easy-to-use cloud computing platform of virtual servers (Droplets), object storage ( Spaces), and more.
Laravel is already known by many PHP developers for writing clean, working and debugg-able code. It also has support for many many features, that sometimes aren...
Recently I came across RingCentral, and their way cool suite of communications products. With RingCentral, companies are able to take their traditional phone sy...
Laravel v5.7.20 is released in 8 of January 2019, here are the changes we’ve merged into this release. “Laravel v5.7.20 released!” is published by Tania Blindar...
While developing a package that provides some bundled routes, I came across a problem that bewildered me at first but became clear after a few minutes: Neither...
The Service Container is very simple yet powerful tool in your Laravel app. Most of the time is associated to the Service Provider, where you usually bind a Cla...
I ran in to some composer problems and because of which, I removed composer cache. “How to make composer installations faster” is published by Jagadesha NH
When it comes to microservices, the most common and advocated method for communicating with a service is a RESTful API. And REST is a great choice because it: B...
User::where('id',1)->update([]) and User::find(1)->update([]) do the same thing but in different ways. When working with databases in Laravel you usually find y...
This type of variables is a bit more complex to grasp, but after understanding the concept you will not have any problems to fully exploiting their power in you...
One of best feature of laravel I really like is automatically injecting dependencies, this might sound more complicated then actually it is. In simple terms inj...
A friend who is just getting into using Nodejs for backend development asked me to explain the difference between using session and jwt. So I thought I’d write...
When adding a form to a public site, there’s a risk that spam bots will try to submit it with fake values. We recently released a new package, called laravel-ho...