skip to Main Content

Php – Laravel Http-only cookie

I have a small project using Laravel and Vue.js. I implemented a simple authentication system using Sanctum, based on YouTube tutorials and the official documentation. It works correctly; however, I am concerned about storing the JWT on the client-side using…

VIEW QUESTION

Prevent repeating almost identical code in laravel

I have a controller in my API that contains methods that fetches various data from different tables like account statuses, account types, etc and returns it to the API consumer. use AppModelsAccountStatus; use AppModelsAccountType; use AppModelsAlertLevel; class ClientController extends Controller…

VIEW QUESTION
Back To Top
Search