PHP Classes

File: config/settings.php

Recommend this page to a friend!
  Classes of Wang   Tagydes   config/settings.php   Download  
File: config/settings.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Tagydes
E-commerce Web administration panel and API
Author: By
Last change:
Date: 1 year ago
Size: 530 bytes
 

Contents

Class file image Download
<?php
return [
   
// which type of store to use.
    // valid options: 'json', 'database'
   
'store' => 'json',

   
// if the json store is used, give the full path to the .json file
    // that the store writes to.
   
'path' => storage_path().'/settings.json',

   
// if the database store is used, set the name of the table used..
   
'table' => 'settings',

   
// If the database store is used, you can set which connection to use. if
    // set to null, the default connection will be used.
   
'connection' => null,
];