Answers for "Laravel Dropzone Attachment Required is not working as expected"

PHP
0

Laravel Dropzone Attachment Required is not working as expected

//In your Validation file add these 
  
              'translation_attachments' => [
                'array',
                'required',
            ],
            'translation_attachments.*' => [
                'required',
            ],

// where translation_attachments is your column name in the DB
Posted by: Guest on September-23-2021

Code answers related to "Laravel Dropzone Attachment Required is not working as expected"

Browse Popular Code Answers by Language