for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Http\Requests;
use App\Models\Comment;
use App\Models\JobPoster;
use App\Models\Lookup\CommentType;
use App\Models\User;
use App\Services\Validation\Rules\ValidIdRule;
use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Support\Facades\Log;
class StoreComment 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 [
'comment' => 'nullable|string',
'location' => 'nullable|string',
'type_id' => ['nullable', new ValidIdRule(CommentType::class)]
];