This commit is contained in:
James Cole
2016-10-22 22:03:00 +02:00
parent 49e32abd3f
commit a8a8afc2be
6 changed files with 32 additions and 21 deletions

View File

@@ -29,10 +29,21 @@ class BudgetFormRequest extends Request
*/
public function authorize()
{
// Only allow logged in users
return auth()->check();
}
/**
* @return array
*/
public function getBudgetData(): array
{
return [
'name' => trim($this->input('name')),
'user' => auth()->user()->id,
'active' => intval($this->input('active')) == 1,
];
}
/**
* @return array
*/