Exemplo n.º 1
0
 public function dueDate()
 {
     $settings = APSetting::first();
     $generated_on = new Carbon($this->generated_on);
     $generated_on->addDays($settings->payment_due_in_days);
     return $generated_on->format('d M y');
 }
Exemplo n.º 2
0
 public function isRecentArticle()
 {
     $date = new Carbon($this->data['date']);
     $date->addDays(ARTICLE_RECENT_DAY);
     return $date->gt(Carbon::now());
 }