Skip to content
This repository has been archived by the owner on Aug 16, 2020. It is now read-only.
xy2z edited this page Sep 26, 2018 · 2 revisions

Config

Add your config files in the config/ dir (.php, .json and .ini supported)

After that, you can access them in your views and php files.

config/settings.php

return [
	'title' => 'MyApp',
];

your-view.blade.php

Welcome to {{ Config::get('settings.title') }}.
Clone this wiki locally