Course platform built with Laravel 8 and NuxtJS. This is the official repo for How to build a course platform with NuxtJS, Laravel 8 and Stripe.
To get started please ensure you have the following installed:
- Composer
- NPM and NodeJS
- PHP 7.2.5 or newer.
In order to install it please clone the repo. Then in the backend directory run these commands and ensure to have set up database configuration in .env file:
composer install
php artisan migrate
To run the backend code please use Laravel's in-built php artisan serve
function to run it locally.
Please ensure that you copy .env.example and configure the database and email settings to your preference. Additionally, you should add SESSION_DOMAIN=localhost
for local hosting and change it to your backend domain name when published.
I'm aware certain subscribers of my channel might not have upgraded to Laravel 8, and while composer.json reflects the upgrades in here you might not want to clone the project to disrupt changes you have made. Therefore, I am providing a step-by-step guide on YouTube as well as in the README file:
- 1st) Follow all these steps in here https://laravel.com/docs/8.x/upgrade, perhaps copy and paste composer.json file from here.
- 2nd) If you haven't already installed jetstream please run this command
composer require laravel/jetstream
- 3rd) Install livewire
php artisan jetstream:install livewire
- 4th) You might encounter a bug if you don't add the following code to
App/Providers/AppServiceProvider.php
: Inside the file add:
use Illuminate\Support\Facades\Schema; //Add below namespace
public function boot()
{
Schema::defaultstringLength(191);
}
- 5th) Migrate changes to reflect on your database
php artisan migrate
In order to setup the frontend code please install the dependinces using npm install
. To run the frontend please use npm run dev
- Laravel 8 - backend framework.
- NuxtJS - frontend framework.
- Designed with Ant Design Vue.
Matilde Wittrup - Initial Work - Wimm Media and coding tutorials on YouTube.
This project is licensed under the MIT license - see the LICENSE.MD for details.