David.Raleche.com
- Laravel Socialite makes the experience painless and fast to implement. I highly recommend this package for quick development ! Here laravel socialite raleche
- Install software on your macbook brew install git-lfs List type files to be tracked git lfs track "*.psd" git add .gitattributes Example git add file.psd git commit -m "Add design file" git push origin master
- Define routes at routes/web.php //All certificates Route::post('/search-certificates', 'CertificatesController@search' ); Route::get('/search-certificates', 'CertificatesController@search' ); or Route::any('/search-certificates', 'CertificatesController@search' ); Define Controller function Search public function search(Request $request){ $searchString = $request->input('searchString'); $searchCertificates = DB::table('NAMEOFYOURBABLE') ->where('BOROUGH', 'like', "%$searchString%" ) ->orwhere('STREET', 'like', "%$searchString%" ) ->orwhere('POSTCODE', 'like', "%$searchString%" ) ->orderBy('POSTCODE', 'asc') ->orderBy('NUMBER', 'asc') ->orderBy('JOB_NUMBER', 'asc') ->paginate(20); $searchCertificates->appends(['searchString' => $searchString]); return view('search-certificates', ['searchCertificates' […]
- Find below the steps to install an Oauth2 server with laravel Passport Install the package composer require laravel/passport php artisan migrate php artisan passport:install Retrieve the keys from laravel passport Personal access client created successfully. Client ID: 7 Client secret: JfTAiRtvsdX2pZI1cBUShCrd2BU5pYYrX0lzHwRhBq Password grant client created successfully. Client ID: 8 Client secret: Y3nUHg1xcaOPCsdsdsqbIjA3Ghj5CJnTf0pD1p3t2U5wN Modify App\User.php file […]
- Insomnia Postman