-
3 | @foreach ($errors->{ $bag ?? 'default' }->all() as $error)
4 |
- {{ $error }} 5 | @endforeach 6 |
-
3 | @foreach ($project->activity as $activity)
4 |
- 5 | @include ("projects.activity.{$activity->description}") 6 | {{ $activity->created_at->diffForHumans(null, true) }} 7 | 8 | @endforeach 9 |
3 | {{ $project->title }} 4 |
5 | 6 |6 | Let's start something new 7 |
8 | 9 | 18 |6 | Edit Your Project 7 |
8 | 9 | 19 |My Projects
7 | 8 | New Project 9 |3 | Invite a User 4 |
5 | 6 | 15 | 16 | @include ('errors', ['bag' => 'invitations']) 17 |
4 |
|
18 |
6 | {{ Illuminate\Mail\Markdown::parse($slot) }} 7 | | 8 |
29 |
|
51 |
4 |
|
12 |
4 | {{ Illuminate\Mail\Markdown::parse($slot) }} 5 | | 6 |
4 |
|
12 |
4 | {{ Illuminate\Mail\Markdown::parse($slot) }} 5 | | 6 |
{{ config('app.name') }} 47 | @endif 48 | 49 | {{-- Subcopy --}} 50 | @isset($actionText) 51 | @slot('subcopy') 52 | @lang( 53 | "If you’re having trouble clicking the \":actionText\" button, copy and paste the URL below\n". 54 | 'into your web browser: [:actionURL](:actionURL)', 55 | [ 56 | 'actionText' => $actionText, 57 | 'actionURL' => $actionUrl, 58 | ] 59 | ) 60 | @endslot 61 | @endisset 62 | @endcomponent 63 | -------------------------------------------------------------------------------- /website/resources/views/vendor/pagination/bootstrap-4.blade.php: -------------------------------------------------------------------------------- 1 | @if ($paginator->hasPages()) 2 | 44 | @endif 45 | -------------------------------------------------------------------------------- /website/resources/views/vendor/pagination/default.blade.php: -------------------------------------------------------------------------------- 1 | @if ($paginator->hasPages()) 2 | 44 | @endif 45 | -------------------------------------------------------------------------------- /website/resources/views/vendor/pagination/semantic-ui.blade.php: -------------------------------------------------------------------------------- 1 | @if ($paginator->hasPages()) 2 | 36 | @endif 37 | -------------------------------------------------------------------------------- /website/resources/views/vendor/pagination/simple-bootstrap-4.blade.php: -------------------------------------------------------------------------------- 1 | @if ($paginator->hasPages()) 2 | 25 | @endif 26 | -------------------------------------------------------------------------------- /website/resources/views/vendor/pagination/simple-default.blade.php: -------------------------------------------------------------------------------- 1 | @if ($paginator->hasPages()) 2 | 17 | @endif 18 | -------------------------------------------------------------------------------- /website/routes/api.php: -------------------------------------------------------------------------------- 1 | get('/user', function (Request $request) { 17 | return $request->user(); 18 | }); 19 | -------------------------------------------------------------------------------- /website/routes/channels.php: -------------------------------------------------------------------------------- 1 | id === (int) $id; 16 | }); 17 | -------------------------------------------------------------------------------- /website/routes/console.php: -------------------------------------------------------------------------------- 1 | comment(Inspiring::quote()); 18 | })->describe('Display an inspiring quote'); 19 | -------------------------------------------------------------------------------- /website/routes/web.php: -------------------------------------------------------------------------------- 1 | name('home_test'); 16 | 17 | Route::group(['middleware' => 'auth'], function () { 18 | Route::resource('projects', 'ProjectsController'); 19 | 20 | Route::post('/projects/{project}/tasks', 'ProjectTasksController@store'); 21 | Route::patch('/projects/{project}/tasks/{task}', 'ProjectTasksController@update'); 22 | 23 | Route::post('/projects/{project}/invitations', 'ProjectInvitationsController@store'); 24 | 25 | Route::get('/home', 'HomeController@index')->name('home'); 26 | }); 27 | 28 | Auth::routes(); 29 | -------------------------------------------------------------------------------- /website/webpack.mix.js: -------------------------------------------------------------------------------- 1 | let mix = require('laravel-mix'); 2 | 3 | require('laravel-mix-tailwind'); 4 | 5 | /* 6 | |-------------------------------------------------------------------------- 7 | | Mix Asset Management 8 | |-------------------------------------------------------------------------- 9 | | 10 | | Mix provides a clean, fluent API for defining some Webpack build steps 11 | | for your Laravel application. By default, we are compiling the Sass 12 | | file for the application as well as bundling up all the JS files. 13 | | 14 | */ 15 | 16 | mix.js('resources/js/app.js', 'public/js') 17 | .sass('resources/sass/app.scss', 'public/css') 18 | .tailwind(); 19 | -------------------------------------------------------------------------------- /website/website.msbuildproj: -------------------------------------------------------------------------------- 1 |