Posts

Showing posts with the label Laravel

Error in php artisan serve - Failed to listen on 127.0.0.1:8xxx (reason: Address already in use)

Artisan  is the name of the command-line interface included with  Laravel . It provides a number of helpful commands for your use while developing your application. It is driven by the powerful Symfony Console component. 

Validate single/multiple ckeditor fields in a form

Today I came across a frustrating issue in which I had two textareas which I am using as a ckeditor in a given form. Now in my whole form, I am using HTML5 validations and all I wanted was to make all my fields compulsory. So, I thought adding the “required” attribute will do the trick and I’ll be on my way. But, required attribute worked everywhere except for the ckeditor fields.