After preparing the API backend and registration page discussed in article part 1. The next step is to create a login controller and create a login page to be able to access the main dashboard or system page. To be able to follow this article well, ...
laravel
Tutorial CRUD Client and API Server Using JQuery And Lumen Part 1
Next is a tutorial on how to create a database CRUD application using jquery and laravel framework. I have made many CRUD tutorials on the Seegatesite.com site, the difference is, in this tutorial the client will directly access the server API ...
How To Solve Problems Illegal mix of collations (latin1_swedish_ci,IMPLICIT) In Laravel
Are you having database error problems "SQLSTATE [HY000]: General error: 1267 Illegal mix of collations (latin1_swedish_ci, IMPLICIT) and (utf8_unicode_ci, COERCIBLE) for operation '='" on laravel? If yes, solve the problem with the following ...
How To Resolve No ‘Access-Control-Allow-Origin’ Header In Lumen
Have you ever encountered a "No 'Access-Control-Allow-Origin' Header" error when accessing an external API server? Probably most of us have experienced it. The following tutorial I will share how to resolve the No 'Access-Control-Allow-Origin' ...
How To Create Custom Class In Laravel 5.5 For Beginners
Creating custom class on Laravel is easy to apply. Often we need additional classes to summarize and facilitate us in building applications. Laravel is a PHP framework that implements a fairly robust MVC concept and a fairly viscous application of ...
Restful API Tutorial With Lumen Laravel 5.5 For Beginners
Lumen is the best PHP framework to build the Restful API. Lumen was developed by Taylor Otwell, the developer behind the most popular PHP framework today, Laravel. We could say, the Lumen Framework is a derivative of Laravel. The following tutorial ...