2014-08-13 00:02:13 -05:00
|
|
|
<?php
|
2014-11-22 16:32:10 -06:00
|
|
|
use Carbon\Carbon;
|
2014-12-06 05:12:55 -06:00
|
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
|
|
use Watson\Validating\ValidatingTrait;
|
2014-12-20 08:00:53 -06:00
|
|
|
use \Illuminate\Database\Eloquent\Model as Eloquent;
|
2014-12-13 14:59:02 -06:00
|
|
|
/**
|
2014-12-24 13:55:42 -06:00
|
|
|
* Class PiggyBankRepetition
|
2014-12-13 14:59:02 -06:00
|
|
|
*/
|
2014-12-24 13:55:42 -06:00
|
|
|
class PiggyBankRepetition extends Eloquent
|
2014-08-13 00:02:13 -05:00
|
|
|
{
|
2014-12-06 05:12:55 -06:00
|
|
|
use ValidatingTrait;
|
2014-08-13 00:02:13 -05:00
|
|
|
public static $rules
|
2014-11-18 02:47:50 -06:00
|
|
|
= [
|
2014-12-24 13:55:42 -06:00
|
|
|
'piggy_bank_id' => 'required|exists:piggy_banks,id',
|
2014-11-18 02:47:50 -06:00
|
|
|
'targetdate' => 'date',
|
|
|
|
'startdate' => 'date',
|
|
|
|
'currentamount' => 'required|numeric'];
|
2014-08-13 00:02:13 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getDates()
|
|
|
|
{
|
|
|
|
return ['created_at', 'updated_at', 'targetdate', 'startdate'];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
*/
|
2014-12-24 13:55:42 -06:00
|
|
|
public function piggyBank()
|
2014-08-13 00:02:13 -05:00
|
|
|
{
|
2014-12-24 13:55:42 -06:00
|
|
|
return $this->belongsTo('PiggyBank');
|
2014-08-13 00:02:13 -05:00
|
|
|
}
|
|
|
|
|
2014-12-13 14:59:02 -06:00
|
|
|
/**
|
|
|
|
* @param Builder $query
|
|
|
|
* @param Carbon $date
|
|
|
|
*/
|
2014-12-06 05:12:55 -06:00
|
|
|
public function scopeStarts(Builder $query, Carbon $date)
|
|
|
|
{
|
|
|
|
$query->where('startdate', $date->format('Y-m-d'));
|
2014-11-22 16:32:10 -06:00
|
|
|
}
|
2014-12-06 05:12:55 -06:00
|
|
|
|
2014-12-13 14:59:02 -06:00
|
|
|
/**
|
|
|
|
* @param Builder $query
|
|
|
|
* @param Carbon $date
|
|
|
|
*/
|
2014-12-06 05:12:55 -06:00
|
|
|
public function scopeTargets(Builder $query, Carbon $date)
|
|
|
|
{
|
|
|
|
$query->where('targetdate', $date->format('Y-m-d'));
|
2014-11-22 16:32:10 -06:00
|
|
|
}
|
|
|
|
|
2014-08-16 00:07:42 -05:00
|
|
|
|
2014-08-13 00:02:13 -05:00
|
|
|
}
|