Example #1
0
File: Api.php Project: rob1121/qdn
 protected function getColumnMonthCreatedTimeAndClosingTime($month)
 {
     return Closure::CycleTimeForMonth($month)->map(function ($key) {
         return ['month' => $key->month, 'created' => strtotime($key->created_at), 'closed' => strtotime($key->date_sign)];
     });
 }