x This domain is for sale. If you intrested, Please contact : webspeckle@gmail.com

Laravel ClassLoader trying to load an old version of class

Laravel ClassLoader trying to load an old version of class throws an error 'failed to open stream: No such file or directory'

How to solve this problem?

Clear composer cache and then run composer dump-autoload.
composer clear-cache
composer dump-autoload

Expand div to full screen

Here we are showing how to expand a div to full screen. See the demo and do it.

Sample code and demo is here

Demo

Bootstrap model with jquery ui dialog occur a max callstack size exceeded error

Open a jquery ui dialog from bootstrap modal. This occur a max call stack size exceeded error in console.

We can solve this error in two way in my knowledge.

1) set 'modal' property to false in jqueryui dialog.
e.g.
$( ".selector" ).dialog({
  modal: false
});
2) Add the below line of code to your page
$.fn.modal.Constructor.prototype.enforceFocus = function (){};