* Edit relation docblocks of Contact model * Move activities to its own controller * Move reminders to its own controller * Move tasks to its own controller * Refactor Gift in preparation for the move * Move gifts into its own controller * Fix failing tests * Move debt to its own controllelr * Fix tests failing on PHP7 * Move significant others to its own controller * Move kids to its own controller * Move notes to its own controller * Some more adjustments & solving #277 And more query optimizations
31 lines
517 B
PHP
31 lines
517 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\People;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class NotesRequest extends FormRequest
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function authorize()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function rules()
|
|
{
|
|
return [
|
|
'body' => 'required|string'
|
|
];
|
|
}
|
|
}
|