length validation in laravel

 $request->validate([
            'title' => 'max:149',            
            'category' => 'max:99',
            'summary' => 'max:299',
            'description' => 'max:8000',            
            'thumb' => 'max:50',
            'image' => 'max:300',            
        ]);



Leave a Reply