invoiceninja/app/Http/Requests/ExpenseRequest.php

34 lines
719 B
PHP
Raw Normal View History

2016-05-01 15:04:55 +03:00
<?php namespace App\Http\Requests;
2016-08-23 13:42:02 +03:00
use App\Models\ExpenseCategory;
2016-05-01 15:04:55 +03:00
class ExpenseRequest extends EntityRequest {
protected $entityType = ENTITY_EXPENSE;
public function entity()
{
$expense = parent::entity();
2016-08-23 13:42:02 +03:00
// eager load the documents
if ($expense && ! $expense->relationLoaded('documents')) {
2016-05-01 15:04:55 +03:00
$expense->load('documents');
}
2016-08-23 13:42:02 +03:00
2016-05-01 15:04:55 +03:00
return $expense;
}
2016-08-23 13:42:02 +03: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();
}
}