| Current Path : /home/copmadinaarea/creditunion.copeastlegondistrict.org/app/Models/ |
| Current File : /home/copmadinaarea/creditunion.copeastlegondistrict.org/app/Models/Branch.php |
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Branch extends Model {
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'branches';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = ['name'];
public function __construct() {
$this->attributes['name'] = get_option('default_branch_name', 'Main Branch');
}
}