2016-05-01 14:04:55 +02:00
|
|
|
<?php namespace App\Http\Requests;
|
|
|
|
|
2016-08-23 12:43:03 +02:00
|
|
|
use App\Models\ExpenseCategory;
|
|
|
|
|
|
|
|
|
2016-05-01 14:04:55 +02:00
|
|
|
class ExpenseRequest extends EntityRequest {
|
|
|
|
|
|
|
|
protected $entityType = ENTITY_EXPENSE;
|
|
|
|
|
|
|
|
public function entity()
|
|
|
|
{
|
|
|
|
$expense = parent::entity();
|
2016-08-23 12:43:03 +02:00
|
|
|
|
2016-05-05 09:15:51 +02:00
|
|
|
// eager load the documents
|
|
|
|
if ($expense && ! $expense->relationLoaded('documents')) {
|
2016-05-01 14:04:55 +02:00
|
|
|
$expense->load('documents');
|
|
|
|
}
|
2016-08-23 12:43:03 +02:00
|
|
|
|
2016-05-01 14:04:55 +02:00
|
|
|
return $expense;
|
|
|
|
}
|
2016-08-23 12:43:03 +02:00
|
|
|
|
|
|
|
public function sanitize()
|
|
|
|
{
|
|
|
|
$input = $this->all();
|
|
|
|
|
|
|
|
if ($this->expense_category_id) {
|
|
|
|
$input['expense_category_id'] = ExpenseCategory::getPrivateId($this->expense_category_id);
|
|
|
|
$this->replace($input);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->all();
|
|
|
|
}
|
|
|
|
}
|