PHP Classes

File: app/config/constants.php

Recommend this page to a friend!
  Classes of Kabir Hossain   Sage   app/config/constants.php   Download  
File: app/config/constants.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Sage
Demo application of Web development framework
Author: By
Last change:
Date: 1 year ago
Size: 520 bytes
 

Contents

Class file image Download
<?php

return [

   
/*
    |--------------------------------------------------------------------------
    | Constants
    |--------------------------------------------------------------------------
    |
    | This file is for storing the constants for this application
    |
    */
   
'gender' => [
       
1 => 'Male',
       
2 => 'Female'
   
],
   
'maritial' => [
       
0 => '',
       
1 => 'Unmarried',
       
2 => 'Married',
       
3 => 'Single',
       
4 => 'Divorced',
       
5 => 'Widow'
   
],

];