Laravel JSON-RPC
– dev.to - submitted by Alexandr Chernyaev
JSON-RPC 2.0 this is a simple stateless protocol for creating an RPC (Remote Procedure Call) style API. It usually looks as follows:
Read more [dev.to]
– dev.to - submitted by Alexandr Chernyaev
JSON-RPC 2.0 this is a simple stateless protocol for creating an RPC (Remote Procedure Call) style API. It usually looks as follows:
Read more [dev.to]
– medium.com - submitted by Arman Ahmadi
If you have a PHP or a Laravel based application, there was a time wondering where the users are coming from, and that’s is so important when it comes to marketing.
Read more [medium.com]
– stitcher.io - submitted by Brent
How modern PHP is managed
Read more [stitcher.io]
– www.youtube.com - submitted by Glenn Kimble Jr
In this video we'll revisit the "type" column on our entries, and restrict an entries "type" to a given list of categories.
Read more [www.youtube.com]
– www.youtube.com - submitted by Mitul Golakiya
In this video I covered getting started and building a demo of Support Ticket system with comments with #laravel #livewire during the LaravelLive India Online Apr 2020. Following things are covered: 1. Setup Laravel Livewire 2. Create Livewire Components 3. Livewire Data Binding 4. Livewire Actions 5. Livewire Events Complete code here: https://bit.ly/3d87hIe
Read more [www.youtube.com]
– frederickvanbrabant.com - submitted by Frederick Vanbrabant
One of the first things I do when I join a new project is checking out the admin panel, that's even before I see a single line of code. Why? It tells us so much about the company and the mindset of the project.
Read more [frederickvanbrabant.com]
– github.com - submitted by El Houssain Inani
A small package that handles for you the roles and permissions with a very unique API
Read more [github.com]
– www.leonelngande.com - submitted by Leonel Elimpe
If your Laravel app uses multiple locales, it can get tedious keeping track of translation strings that are yet to be added to appropriate translation files. To automatically make checks so we know when a translation string is missing, unit tests can be added.
Read more [www.leonelngande.com]
– ryangjchandler.co.uk - submitted by Ryan Chandler
Lots of languages have the concept of "enums" - a set of named values generally called enumerators. Go is different and instead provides the tools for creating pseudo-enums.
Read more [ryangjchandler.co.uk]
– www.youtube.com - submitted by Glenn Kimble Jr
We'll use TDD to finish up our CRUD operations for an Entry. Then we'll also update our Bootstrap UI and use some jQuery.
Read more [www.youtube.com]
– ryangjchandler.co.uk - submitted by Ryan Chandler
Abstracting common queries in your Laravel applications can be done in many ways. Let's take a look at the simplest way using the "Repository pattern".
Read more [ryangjchandler.co.uk]
– www.csrhymes.com - submitted by Chris Rhymes
A tutorial explaining how to create a docs site for your project using Bulma Clean Theme with GitHub pages
Read more [www.csrhymes.com]
– stitcher.io - submitted by Brent
About the value of our own creations
Read more [stitcher.io]
– aaronfrancis.com - submitted by Aaron Francis
A Laravel package to mimic daemons via scheduled commands without having to change server configuration.
Read more [aaronfrancis.com]
– jeroeng.dev - submitted by Jeroen
Use a lightweight preconfigured Docker image to get your Laravel application very easily up and running in a Docker container.
Read more [jeroeng.dev]
– dev.to - submitted by Ahmed Abd El Ftah
In this post I will show you what consideration to take when pulling open source packages into your project.
Read more [dev.to]
– www.youtube.com - submitted by Glenn Kimble Jr
Learn all about Laravel’s collection class. When to use it, how to leverage it to clean up your code, and how it works under the hood.
Read more [www.youtube.com]
– github.com - submitted by Cristian Iosif
A Laravel 7+ admin preset that scaffolds out a minimum functionality to get one started. On top of Laravel, this preset is built using Tailwind CSS, Alpine JS and Livewire and includes: - [Laravel UI](https://github.com/laravel/ui) for generating the auth - [Laravel Charts](https://charts.erik.cat/) with ChartJS presets - [SweetAlert2](https://realrashid.github.io/sweet-alert/) package by Rashid Ali (realrashid) - [DropzoneJS](https://www.dropzonejs.com/) for uploading files
Read more [github.com]
– jinoantony.com - submitted by Jino Antony
An article describing how to code to an interface works with example
Read more [jinoantony.com]
– vrajroham.me - submitted by Vaibhavraj Roham
Passport expects `accessToken` in header(Authorization) to get a request user when `auth:api` middleware is applied. Some 3rdparty apps which use password grant for API, send `accessToken` in request body instead of header in such cases `auth:api` won't work. This post shows how you can easily extract the user from `accessToken` .
Read more [vrajroham.me]