verify laravel string must be null
public function rules()
{
return [
'age' => 'integer',
'title' => 'nullable|string|max:50'
];
}
verify laravel string must be null
public function rules()
{
return [
'age' => 'integer',
'title' => 'nullable|string|max:50'
];
}