A website that lets users browse, filter and interact with recipes, using a simple account system. Once logged in, users can add and edit recipes.
Built using laravel with the php framework for server-side, with MySQL for the database (not included here), and HTML/CSS/JavaScript for client-side.
- how the hell laravel works
- how to actually implement a MVC (model/view/controller) system
- how the hell blade works
- (sort of) how the hell laravel breeze works (WORST MISTAKE OF MY LIFE)
- pain.
Download XAMPP
Clone the project (mine's in /XAMPP/htdocs)
git clone https://github.com/Tzar-T70/vkitchenChange database values to your liking (if you dont use MySQL):
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=v-kitchen
DB_USERNAME=root
DB_PASSWORD=Go to the project directory
cd vkitchenRun Migrations (creates database tables)
php artisan migrateRun Seeder (if you want some test data)
php artisan db:seedStart the server
php artisan serveHit the link in the terminal!!!!