50 lines
898 B
PHP
50 lines
898 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Auth;
|
|
use App\Helpers\DateHelper;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Task extends Model
|
|
{
|
|
protected $dates = ['completed_at'];
|
|
|
|
public function getTitle()
|
|
{
|
|
if (is_null($this->title)) {
|
|
return null;
|
|
}
|
|
|
|
return $this->title;
|
|
}
|
|
|
|
public function getDescription()
|
|
{
|
|
if (is_null($this->description)) {
|
|
return null;
|
|
}
|
|
|
|
return $this->description;
|
|
}
|
|
|
|
public function getCreatedAt()
|
|
{
|
|
return $this->created_at;
|
|
}
|
|
|
|
/**
|
|
* Change the status of the task from in progress to complete, or the other
|
|
* way around.
|
|
*/
|
|
public function toggle()
|
|
{
|
|
if ($this->status == 'completed') {
|
|
$this->status = 'inprogress';
|
|
} else {
|
|
$this->status = 'completed';
|
|
}
|
|
$this->save();
|
|
}
|
|
}
|