Skip to content

bddevsclub/website

Repository files navigation

BD Devs Club Website

Setup

This is a typical Laravel 5.1 app. I recommend you create a Virtual Host for it.

Create a .env file. Use the example .env.example file to create it. Add your configurations here. You must configure a database connection before proceeding.

Data Migration and Seeding

	php artisan migrate
	php artisan db:seed

Create Admin User

	php artisan user:create

Admin Views

Go to: /auth/login to login.

Common Conventions

  • Avoid implicit controllers, use resources. keep the routes.php file clean.
  • Create your models inside App\Models namespace.
  • Views should be placed inside directories dedicated to each controller. For example all the views for IndexController should be inside index directory under the main directory.
  • Assets should go inside public/static.

Releases

No releases published

Packages

No packages published

Languages