Let's set up the Laravel project with the models, migrations, and views we need.
This lesson is free, but you need to log in to get full access to the video and lesson content.
Join 4.3K+ learners from companies like Shopify, Microsoft, Tiktok, AppSumo and Instacart.
We started by setting up the necessary models and migrations for our project. Here's what we accomplished:
LinkPage
model and migrationLink
model and migrationAfter creating the models and migrations, we executed the following steps:
We updated the User model to include the Billable
trait for Cashier functionality:
use Laravel\Cashier\Billable; class User extends Authenticatable { use...
This lesson is free, but you need to log in to view it.