Skip to content

UCMercedACM/Tuolumne

Repository files navigation

Tuolumne


Workshop Management API

Build Status Total Downloads Latest Stable Version License

About Laravel

Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:

Laravel is accessible, powerful, and provides tools required for large, robust applications.

Learning Laravel

Laravel has the most extensive and thorough documentation and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework.

If you don't feel like reading, Laracasts can help. Laracasts contains over 1500 video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library.

Geting Started

Database Connection

Install of dependencies php artisan migrate:install

Generate Tables

Create all tables in psql php artisan migrate:fresh

Run App Locally

Serve up the application with php artisan serve

Make new tables

  1. php artisan make:model -f -m TableName
  2. Make a new Factory to autogenerate test data in database/factories/TableNameFactory.php
  3. Build the seeder php artisan make:seeder CarsTableSeeder
  4. Seed the database php artisan migrate --seed

License

The Laravel framework is open-sourced software licensed under the MIT license.