You may have noticed select/deselect all functionality on websites like gmail.com, outlook.com or even in the wordpress admin dashboard basically which allows you to select…
Leave a CommentTutorials / Programming tips Posts
Laravel 5.0 introduces Form Requests, which are a special type of class devoted to validating and authorizing form submissions. Each class contains at least a…
Leave a CommentRecently Google has been introduced new reCaptcha API called “Are you a robot?”. “No Captcha reCaptcha” a complete new design captcha system and it enables…
1 Commentclass NewMediaModel extends Model { public function getTableColumns() { return $this->getConnection()->getSchemaBuilder()->getColumnListing($this->getTable()); } }
1 Comment@if($errors->has()) @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif
Leave a CommentBy adding dynamic body class to html pages we can get the flexibility of easily modifying the look of the each page by using css…
Leave a CommentWe can merge easily laravel’s query result with another result object, by using laravel’s Collections method called merge(), It will merge a collection with another…
6 CommentsAlmost in all projects, we face this situation where we have a first name and last name in two different fields in the database table…
1 CommentWeb notifications API was designed to display END user notifications(desktop notifications), which allows alerting the user outside the context of a web page. This API…
Leave a CommentThe Internet has been and will be an essential tool towards achieving success. More importantly, it has given a wide platform to express the inner…
1 CommentSending Emails is very important requirement of the almost all modern web applications. Sending Emails in Laravel Based applications is very simple because Laravel email…
5 CommentsIf you have set up an e-mail contact form on your website, then it won’t take too long before you start getting spam (i.e. unwanted…
Leave a CommentLaravel’s Request class provides many methods for reading the HTTP request of the current request. One of these function is named ajax(). Using this function…
Leave a CommentHere is the simple quick post about removing specific element from an array using php.In this example we are going to use array_search() function ,…
2 Comments