├── public ├── favicon.ico ├── robots.txt ├── .htaccess ├── web.config └── index.php ├── database ├── seeds │ ├── .gitkeep │ └── DatabaseSeeder.php ├── .gitignore ├── migrations │ ├── .gitkeep │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2014_10_12_000000_create_users_table.php │ └── 2016_07_10_024050_create_tasks_table.php └── factories │ └── ModelFactory.php ├── routes ├── api.php └── web.php ├── resources ├── views │ ├── vendor │ │ └── .gitkeep │ ├── auth │ │ ├── emails │ │ │ └── password.blade.php │ │ ├── passwords │ │ │ ├── email.blade.php │ │ │ └── reset.blade.php │ │ ├── login.blade.php │ │ └── register.blade.php │ ├── tasks │ │ ├── partials │ │ │ ├── edit-task.blade.php │ │ │ ├── task-tab.blade.php │ │ │ ├── create-task.blade.php │ │ │ └── task-row.blade.php │ │ ├── create.blade.php │ │ ├── index.blade.php │ │ ├── edit.blade.php │ │ └── filtered.blade.php │ ├── home.blade.php │ ├── welcome.blade.php │ ├── common │ │ └── status.blade.php │ ├── errors │ │ └── 503.blade.php │ └── layouts │ │ └── app.blade.php ├── assets │ └── sass │ │ └── app.scss └── lang │ └── en │ ├── pagination.php │ ├── auth.php │ ├── passwords.php │ └── validation.php ├── bootstrap ├── cache │ └── .gitignore ├── autoload.php └── app.php ├── storage ├── logs │ └── .gitignore ├── app │ ├── public │ │ └── .gitignore │ └── .gitignore └── framework │ ├── cache │ └── .gitignore │ ├── views │ └── .gitignore │ ├── sessions │ └── .gitignore │ └── .gitignore ├── .gitattributes ├── app ├── Http │ ├── Requests │ │ └── Request.php │ ├── Middleware │ │ ├── EncryptCookies.php │ │ ├── VerifyCsrfToken.php │ │ ├── RedirectIfAuthenticated.php │ │ └── Authenticate.php │ ├── routes.php │ ├── Controllers │ │ ├── Controller.php │ │ ├── HomeController.php │ │ ├── Auth │ │ │ ├── PasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── ForgotPasswordController.php │ │ │ ├── ResetPasswordController.php │ │ │ ├── RegisterController.php │ │ │ └── AuthController.php │ │ └── TasksController.php │ └── Kernel.php ├── Task.php ├── Providers │ ├── EventServiceProvider.php │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ └── RouteServiceProvider.php ├── Jobs │ └── Job.php ├── User.php ├── Console │ └── Kernel.php └── Exceptions │ └── Handler.php ├── tests ├── ExampleTest.php └── TestCase.php ├── package.json ├── .gitignore ├── .env.example ├── gulpfile.js ├── server.php ├── .all-contributorsrc ├── license.svg ├── config ├── compile.php ├── view.php ├── services.php ├── broadcasting.php ├── filesystems.php ├── cache.php ├── queue.php ├── auth.php ├── mail.php ├── database.php ├── session.php └── app.php ├── LICENSE ├── phpunit.xml ├── composer.json ├── artisan ├── readme.md └── README.md /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- 1 | getEmailForPasswordReset()) }}"> {{ $link }} 2 | -------------------------------------------------------------------------------- /app/Http/Requests/Request.php: -------------------------------------------------------------------------------- 1 | 'PATCH', 'route' => ['projects.update', $project->slug], 'class' => 'form-horizontal', 'role' => 'form')) !!} 2 | @include('projects/partials/_form', array('submit_text' => 'Edit Project', 'submit_icon' => 'pencil')) 3 | {!! Form::close() !!} -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | call(UsersTableSeeder::class); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\User'); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/Http/routes.php: -------------------------------------------------------------------------------- 1 | 5 |
| ID | 10 |Name | 11 |Description | 12 |Status | 13 | 14 | 15 | @foreach ($tasks as $task) 16 | @include('tasks.partials.task-row') 17 | @endforeach 18 | 19 |
|---|
{{ Session::get('success') }}
5 |13 | Error: {{ $error }} 14 |
15 | @endforeach 16 || ID | 50 |Name | 51 |Description | 52 |Status | 53 | 54 | 55 | @foreach ($tasks as $task) 56 | @include('tasks.partials.task-row') 57 | @endforeach 58 | 59 |
|---|