Deploy your Laravel app from scratch
– lorisleiva.com - submitted by Loris
So you’ve got a Laravel application and you’re ready for the world to see it? Then this series is for you!
Read more [lorisleiva.com]
In this section you'll find links submitted by others.
Did you write or stumbled across a blog post, tutorial or video that might be interesting for others?
To be able to submit a link you need to log in first.
Log in– lorisleiva.com - submitted by Loris
So you’ve got a Laravel application and you’re ready for the world to see it? Then this series is for you!
Read more [lorisleiva.com]
– aaronfrancis.com - submitted by Aaron Francis
A quick tutorial on using Inertia.js for your application and plain Blade views for your marketing pages.
Read more [aaronfrancis.com]
– github.com - submitted by Bennett Treptow
This Laravel package takes an existing database and will convert it to a migration file.
Read more [github.com]
– www.csrhymes.com - submitted by Chris Rhymes
In this example we are going to create an export of User information into Excel using Laravel Resource Collection and Spatie’s simple excel package. Laravel Resources are normally used to transform your data for use in an API, but you can also create an array from the resource for use in our export.
Read more [www.csrhymes.com]
– www.jeroenvanrensen.nl - submitted by Jeroen van Rensen
In this post, I show you how you can unit test all possible Eloquent relationships.
Read more [www.jeroenvanrensen.nl]
– yossiabramov.com - submitted by Joseph Abramov
In this tutorial, we will install Lumen with Composer, containerize our Lumen app + MySQL with Docker and go over some examples of interacting with our dockerized Lumen project. In the first part of this tutorial, we will focus on installing our Lumen app and get it up and running with Docker.
Read more [yossiabramov.com]
– www.jeroenvanrensen.nl - submitted by Jeroen van Rensen
The email verification feature exists of three parts: 1. A page to tell the user that they have to verify their email address 2. A button where a user can click to request another link 3. A route to verify the email address after clicking on a button in an email
Read more [www.jeroenvanrensen.nl]
– protone.media - submitted by Pascal Baljet
Inertia.js has an event system to hook into lifecycle events. You can, for example, hook into page visits and unsuccessful form requests. This new package provides helper methods for Laravel Dusk that you can use to wait for specific Inertia.js events to fire.
Read more [protone.media]
– laravel-code.tips - submitted by Samuel Štancl
A beautifully designed website that aggregates Laravel code tips.
Read more [laravel-code.tips]
– adithya.dev - submitted by Adithya
How to mount local Laravel package using Docker for development
Read more [adithya.dev]
– adithya.dev - submitted by Adithya
Solving a problem with timezones from MySQL to ES in Laravel
Read more [adithya.dev]
– zubairmohsin.dev - submitted by Zubair Mohsin
Let's take a look at how Laravel uses `opis/closure` package to serialize closures while dispatching them to queues.
Read more [zubairmohsin.dev]
– protone.media - submitted by Pascal Baljet
A DataTables-like package for Inertia, Laravel, and Vue that comes with Tailwind-styled components. You can search through your data, both globally and per attribute. There's support for pagination, sorting, column toggling, and you can predefine filters. Furthermore, it integrates seamlessly with Spatie's Laravel Query Builder.
Read more [protone.media]
– www.jeroenvanrensen.nl - submitted by Jeroen van Rensen
With the arrival of Laravel 8, new ways for authentication have been added to the Laravel ecosystem. Fortify, Jetstream and Breeze. Although these tools can save you a lot of time, often when you want something more complex they cost you more time. Fortunately, Laravel allows you to add manual auth without the use of any package, just Laravel's core. In this series, we're going to learn how to add manual auth in Laravel.
Read more [www.jeroenvanrensen.nl]
– internachi.github.io - submitted by Chris
We're building Franklin as an open source international address input made for the modern web. It comes in two flavors—React and standalone. Just drop it in wherever your users enter mailing addresses to get well-formed data for any country. Franklin is still in an early stage of development, but we'd love feedback and testing from developers around the world (especially if you live outside of the United States).
Read more [internachi.github.io]
– zubairmohsin.dev - submitted by Zubair Mohsin
Let's take a look at how Laravel uses nesbot/carbon package to provide easy API for date and time manipulation.
Read more [zubairmohsin.dev]
– graphql-api.com - submitted by Leonardo Losoviz
I explain why the codebase for the GraphQL API for WordPress needs to be hosted on a monorepo, and the optimizations I've made for it. It complements article "Hosting all your PHP packages together in a monorepo".
Read more [graphql-api.com]
– blog.logrocket.com - submitted by Leonardo Losoviz
It describes why we may want to use a monorepo to manage our PHP codebase, and how to do it via the Monorepo Builder library.
Read more [blog.logrocket.com]
– ryangjchandler.co.uk - submitted by Ryan Chandler
Let me demonstrate how simple it is to get a flat-file `User` model going in your Laravel application.
Read more [ryangjchandler.co.uk]
– www.jeroenvanrensen.nl - submitted by Jeroen van Rensen
In my opinion, Eloquent is one of the most powerful features of Laravel. It is an API for interacting with your database, and it has a very nice and easy-to-remember syntax. For example: ``` $post->author->name; ``` Will give you the name of the post's author.
Read more [www.jeroenvanrensen.nl]