Laravel application

This repository is linked to this youtube video where I am demonstrating how my application works, and proving that it is functional.

• Author: Noah Krobot

Requirements

• PHP 7.3 or higher
• Node 12.13.0 or higher

Before starting

Create a database

mysql
create database laravelblog;
exit;

My .env file:

DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=blogca DB_USERNAME=root DB_PASSWORD=

References:

use of foreign keys in create_users_and_ratings_table:
https://laravel.com/docs/4.2/schema\

adding an unique element in in create_users_and_ratings_table:
https://laravel.com/docs/4.2/schema\

updateOrCreate in update MealsController:
https://stackoverflow.com/questions/42695943/laravel-updateorcreate-method

collumn avergae in MealsController:
https://stackoverflow.com/questions/42529067/how-to-get-average-of-column-values-in-laravel

number_format in index.blade.php for Meal:
https://www.w3schools.com/php/func_string_number_format.asp

get radio button automatically checked (index.blade.php for Meal):
https://www.phptutorial.net/php-tutorial/php-radio-button/