All Projects β†’ connor11528 β†’ laravel-forum

connor11528 / laravel-forum

Licence: other
πŸ”– Forum built with Laravel 5.4

Programming Languages

PHP
23972 projects - #3 most used programming language
HTML
75241 projects
Vue
7211 projects

Projects that are alternatives of or similar to laravel-forum

Laravel-5.7-From-Scratch
Laravel 5.7 From Scratch
Stars: ✭ 15 (-16.67%)
Mutual labels:  laracasts
Build-A-Laravel-App-With-TDD
It's time to take the techniques we learned in Laravel From Scratch, and put them to good use building your first real-world application. Together, we'll leverage TDD to create Birdboard: a minimal Basecamp-like project management app. This series will give us a wide range of opportunities to pull up our sleeves and test our Laravel chops. As al…
Stars: ✭ 36 (+100%)
Mutual labels:  laracasts

Laravel Forum

I'm blogging my way through the advanced Laracast course: Let's Build A Forum with Laravel and TDD

Build an online forum with Laravel

Part 1: Initial Setup and Seeding

Part 2:β€ŠCreate routes, views, controllers. Generate auth. Write test

Part 3:β€ŠPost and Show Replies to Threads

Part 4: Give the User the ability to create Threads

Part 5: Testing Helpers in Laravel 5.4

Helpful commands

# Clear cache
$ php artisan cache:clear

# Run tests 
$ phpunit
// OR 
$ ./vendor/bin/phpunit

# Clear config 
$ php artisan config:clear

# Migrate or refresh database
$ php artisan migrate:refresh
$ php artisan migrate:rollback

# Seed database with db seeders
$ php artisan db:seed 

# Seed database with model factories
$ php artisan tinker
> factory('App\Thread', 50)->create();

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].