Skip to content

Tag: php

how to change password in laravel 4 with auth

Authentication on laravel libraries can indeed be called a poweful. With easy implementation we are presented with the availability of complete auth configuration. The authentication configuration file is located at app/config/auth.php, which contains several well documented options for tweaking the behavior of the authentication facilities. With this literature, we can make a variety of implementations. such as storing passwords, authenticating users, protecting the routes, up reminders and reset passwords. But in the documentation laravel there a way to change the password for the user or admin. therefore, in this tutorial I will give an example of how to change the password on laravel 4 using the auth library.   create a route to the change password page Route::any(‘user/changepassword’, ‘Meniqa\\Employee\\Controllers\\UserController@changePassword’);   on the controller class for a…

2 Comments

jQuery Bootgrid on Laravel

During this time I always use datatables library to display a list of data in tabular form dynamically. But while taking the library, I feel given feature too complete and too heavy when loading data. Therefore I began to look for a library table that can accommodate the needs that I have. After the end of his search through the internet I found a library jquery-bootgrid. Bootgrid is a Nice, sleek and intuitive, A grid control especially designed for bootstrap.You can turn your simple table into a sophisticated data table and offer your users a nice experience and great features without any effort.There are two ways to populate jQuery Bootgrid. Either you use the server-side way (e.g. a REST service) for querying a dynamic data source…

2 Comments