filter by task title and order by lastModified, dueDate, status, process and task

This commit is contained in:
Paula Quispe
2019-05-03 08:03:56 -04:00
parent 9f844097da
commit 7f3b8b1e40
13 changed files with 418 additions and 107 deletions

View File

@@ -17,7 +17,6 @@ class Process extends Model
// Our custom timestamp columns
const CREATED_AT = 'PRO_CREATE_DATE';
const UPDATED_AT = 'PRO_UPDATE_DATE';
/**
* Retrieve all applications that belong to this process
*/
@@ -26,7 +25,6 @@ class Process extends Model
return $this->hasMany(Application::class, 'PRO_ID', 'PRO_ID');
}
public function tasks()
{
return $this->hasMany(Task::class, 'PRO_UID', 'PRO_UID');