how do we access data from database or other files in app.php of the config folder in laravel 5 ? I want to access other file outside the application
For access data from database see running a select query Example:
$results = DB::select('select * from users where id = ?', [1]);
The select method will always return an array of results.
For access data from another file see view and here.