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:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user