I'm using Laravel 5. I see Laravel uses .env
to connect databases for example DB_USERNAME
and DB_PASSWORD
, but i want to log in and use my username and password from my form to connect with those values from withim my oracle database with a table name "dba_users" which has the user and password and some others fields
i want to do that becauses each user has their own granted permissions(roles) to certain tables, thus Oracle would managed the user login permissions and not the .env
DB_USERNAME
.
Any ideas?
Thanks
via Daniel