Laravel 5.5 - Login With Only Mobile Number Using Laravel Custom Auth

Today, we are share with you how to modify laravel bydefault authentication and make it custom as per our requirement. in this totorials we are modify laravel authentication sysstem and make "how to login with only mobile number in laravel application using laravel custom authentication". but you also can modify as per your requirement. Laravel provide bydefault authentication system on users table's email and password fields and it very helpfull for us. but sometime we want to .....

Continue reading By : Laravelcode October 7, 2017 Category 124416 views

Laravel 5.5 get current login user details using Auth

Today, we are share with youu how to get current login user details in laravel. we are always need to sometime current login user details like id, name, email, profile picture etc.. So, here we are share with you how to get in to way. you also get current login user details in controller and blade in same way. [ADDCODE] Using Helper: $user = auth()->user(); print($user->id); print($user->name); print($user->email); Using Facade: $user = Auth::user();.....

Continue reading By : Laravelcode October 7, 2017 Category 31628 views

Laravel 5.5 - The page has expired due to inactivity - issue

Today, we are share with you how to resolve "The page has expired due to inactivity" issue in laravel 5.5 error. sometime ago laravel 5.5 release with some new future then we are install laravel 5.5 in my local system and tested. we are seen many time this error "The page has expired due to inactivity" when we are submit form. then i search on google and find solution for it. this problem is not big. "The page has expired due to inactivity" is error message seen .....

Continue reading By : Laravelcode October 7, 2017 Category 17654 views

Laravel 5.5 - Google reCaptcha Code With Validation Example

Today, we are share with you in this article how to implement google reCaptcha code in laravel with validation. generally captcha use in register, login form and you can see in many website almost site use google reCaptcha. but you can also done this with manyally. but google captcha is best and many laravel package also available using that package you can easyly done this functionality in your application. anhskohbo/no-captcha laravel package is best for it and we are implementing google reCap.....

Continue reading By : Laravelcode October 5, 2017 Category 66003 views

Laravel 5.5 - Get Last Inserted ID With Example

Today, we are share with you how to get last inserted ID in laravel with 4 simple example. we have needed some it last inserted ID in laravel application. so, here we have find 4 diffrent way to get last inserted ID in laravel. you can use it and get last ID of inserted record in laravel application. 1) Using insertGetId() method You can get last inserted ID using insertGetId() in laravel for example $id = DB::table('users')->insertGetId( [ 'name' => '.....

Continue reading By : Laravelcode September 26, 2017 Category 560799 views

Laravel 5.5 - Algolia Full Text Search Example With Scout

Today, we are share with you howt o built a full text search in laravel application using scout and algolia package. in many laravel application you need to built full text search. so, you can easyly done with laravel scout and algolia package. algolia package provide a live search APIs funnction using this you can search full text search in model or quesry. in this tutorial we are show you one example how to built full tect search and how to integrate laravel scout and algolia. Simple fol.....

Continue reading By : Laravelcode September 26, 2017 Category 25469 views