PHP Classes

File: config/boilerplate.php

Recommend this page to a friend!
  Classes of Nyi Nyi Lwin   Laravel SAAS Boilerplate   config/boilerplate.php   Download  
File: config/boilerplate.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Laravel SAAS Boilerplate
Base application to develop software as a service
Author: By
Last change:
Date: 1 year ago
Size: 636 bytes
 

Contents

Class file image Download
<?php

return [
   
'trial_days' => 14,

   
'plans' => [
       
'bronze-express-772' => 'Bronze Express ? $9.99',
       
'price_1IHa5pArn1gL4nVBw8yJEHxw' => 'Premium Express ? $19.99',
    ],

   
'cancellation_reasons' => [
       
'Too expensive',
       
'Lacks features',
       
'Not what I expected',
    ],

   
'access' => [
       
'role' => [

           
/*
             * The name of the administrator role
             * Should be Administrator by design and unable to change from the backend
             * It is not recommended to change
             */
           
'admin' => 'Administrator',
        ],
    ]
];