Files
sql-server-samples/samples/development-frameworks/laravel
Perry Skountrianos cca0f1920e Updating CountryName from "Turkey" to "Türkiye" and FormalName from "Republic of Turkey" to "Republic of Türkiye"
Updating CountryName from "Turkey" to "Türkiye" and FormalName from "Republic of Turkey" to "Republic of Türkiye"
2022-10-07 15:19:10 -07:00
..
2016-11-07 11:53:44 -08:00
2016-11-07 11:53:44 -08:00
2016-11-07 11:53:44 -08:00
2016-11-07 11:53:44 -08:00
2016-11-07 11:53:44 -08:00
2016-11-07 11:53:44 -08:00
2016-11-07 11:53:44 -08:00
2016-11-07 11:53:44 -08:00
2016-11-07 11:53:44 -08:00
2016-11-07 11:53:44 -08:00
2016-11-07 11:53:44 -08:00
2016-11-07 11:53:44 -08:00
2016-11-07 11:53:44 -08:00
2016-11-07 11:53:44 -08:00
2016-11-07 11:53:44 -08:00
2016-11-07 11:53:44 -08:00
2016-11-07 11:53:44 -08:00
2016-11-07 11:53:44 -08:00
2016-11-07 11:53:44 -08:00

Myboard

Build Status

Myboard is an open source to do board built with PHP using the Laravel Web Framework.

The project has two basic apps:

  • Create todo action items
  • Mark Status

Technology Stack

  • PHP 7
  • Ubuntu 16.04
  • Laravel 5.1
  • Twitter Bootstrap 3
  • Microsoft PHP SQL Server Driver
  • Microsoft ODBC SQL Server Driver

Installation Guide

1 Install Pre-Requisites

2 Install dependencies

On the project root there is a requirements.pip file. Make sure you install all the required dependencies before running myboard

cd todo
composer install

3 Syncdb

Edit your database.php with your database information

'sqlsrv' => [
		'driver'   => 'sqlsrv',
		'host'     => 'your_server',
		'database' => env('DB_DATABASE', 'your_database'),
		'username' => env('DB_USERNAME', 'sa'),
		'password' => env('DB_PASSWORD', 'your_password'),
		'prefix'   => '',
	],

Then run the database migration

php artisan migrate
chmod 777 -R storage

4 Run

php artisan serve