This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Illuminate\Support\Carbon; | |
use Illuminate\Support\Facades\Storage; | |
/** | |
* Format phone number to standard US | |
* | |
* @param string $data 9161234567 | |
* @return string (916) 123-4567 | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); | |
class dashboard extends MY_Controller | |
{ | |
public function __construct() | |
{ |