Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created February 19, 2019 18:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/42ec86946268541c6ba730b012dd5229 to your computer and use it in GitHub Desktop.
Save parzibyte/42ec86946268541c6ba730b012dd5229 to your computer and use it in GitHub Desktop.
<?php
use Illuminate\Support\Facades\Config;
$valor = Config::get("clave");
$iva = Config::get("iva");
# También a otros niveles de profundidad
$otra_clave = Config::get("anidado.otra_clave");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment