├── public ├── favicon.ico ├── packages │ └── .gitkeep ├── robots.txt ├── assets │ ├── images │ │ └── screenshot.png │ ├── css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── app.css │ │ └── libs │ │ │ └── font-awesome.min.css │ └── js │ │ ├── libs │ │ ├── jquery.ui.touch-punch.min.js │ │ ├── jquery-touch-fixer.js │ │ └── jquery.jeditable.mini.js │ │ └── app.js ├── .htaccess └── index.php ├── app ├── config │ ├── packages │ │ ├── .gitkeep │ │ └── toddish │ │ │ └── verify │ │ │ └── config.php │ ├── compile.php │ ├── testing │ │ ├── cache.php │ │ └── session.php │ ├── services.php │ ├── workbench.php │ ├── view.php │ ├── remote.php │ ├── auth.php │ ├── queue.php │ ├── cache.php │ ├── database.php │ ├── mail.php │ ├── session.php │ └── app.php ├── database │ ├── seeds │ │ ├── .gitkeep │ │ └── DatabaseSeeder.php │ ├── migrations │ │ ├── .gitkeep │ │ ├── 2014_09_18_085459_create_card_members.php │ │ ├── 2014_09_18_091530_create_card_checklists.php │ │ ├── 2014_09_18_084837_create_board_members.php │ │ ├── 2014_09_18_085724_create_card_comments.php │ │ ├── 2014_09_18_085619_create_card_activities.php │ │ ├── 2014_09_18_083207_create_lists.php │ │ ├── 2014_09_18_082826_create_boards.php │ │ ├── 2014_09_18_083837_create_board_activities.php │ │ ├── 2014_09_18_091651_create_checklist_items.php │ │ ├── 2014_09_18_093316_create_card_attachments.php │ │ └── 2014_09_18_083427_create_cards.php │ └── production.sqlite ├── start │ ├── local.php │ ├── artisan.php │ └── global.php ├── storage │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── logs │ │ └── .gitignore │ ├── meta │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ └── views │ │ └── .gitignore ├── modules │ ├── api │ │ └── module.json │ ├── auth │ │ ├── module.json │ │ ├── controllers │ │ │ └── AuthController.php │ │ └── views │ │ │ └── users │ │ │ └── login.blade.php │ ├── content │ │ ├── module.json │ │ ├── views │ │ │ ├── hello.blade.php │ │ │ └── layouts │ │ │ │ ├── guest │ │ │ │ └── default.blade.php │ │ │ │ └── users │ │ │ │ └── default.blade.php │ │ └── controllers │ │ │ └── HomeController.php │ └── core │ │ ├── module.json │ │ ├── models │ │ ├── CheckListItem.php │ │ ├── CardAttachment.php │ │ ├── CardActivity.php │ │ ├── CardComment.php │ │ ├── CheckList.php │ │ ├── BoardActivity.php │ │ ├── CardList.php │ │ ├── User.php │ │ ├── Board.php │ │ └── Card.php │ │ ├── controllers │ │ ├── BaseController.php │ │ ├── BoardController.php │ │ ├── ListController.php │ │ └── CardController.php │ │ └── views │ │ └── users │ │ ├── boards-list.blade.php │ │ └── board.blade.php ├── lang │ └── en │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php ├── filters.php └── routes.php ├── .gitattributes ├── CONTRIBUTING.md ├── .gitignore ├── server.php ├── phpunit.xml ├── README.md ├── composer.json ├── bootstrap ├── paths.php ├── start.php └── autoload.php ├── readme-laravel.md ├── artisan └── dbschema └── Dump20141020.sql /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/config/packages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/packages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /app/database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/database/production.sqlite: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/start/local.php: -------------------------------------------------------------------------------- 1 | call('UserTableSeeder'); 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /app/modules/content/views/hello.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |