Manage tasks in Vue.js (#666)

* Tasks are now edited inline
* Tasks can be marked as completed
* Tasks can be edited
This commit is contained in:
Régis Freyd
2017-11-29 16:07:37 -05:00
committed by GitHub
parent 84a1461c0f
commit 7e367d67da
41 changed files with 1352 additions and 466 deletions
+1 -1
View File
@@ -70,7 +70,7 @@ class DashboardController extends Controller
->get();
// Active tasks
$tasks = $account->tasks()->with('contact')->where('status', 'inprogress')->get();
$tasks = $account->tasks()->with('contact')->where('completed', 0)->get();
$data = [
'events' => $events,