| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- /**
- * Created by PhpStorm.
- * Author: 芸众商城 www.yunzshop.com
- * Date: 2017/3/25
- * Time: 下午1:48
- */
- namespace app\common\models\member;
- use app\common\models\BaseModel;
- class Address extends BaseModel
- {
- public $table = 'yz_address';
- public $timestamps = false;
- public $guarded = [''];
- /*
- * 获取地址数据表全部数据
- *
- * @return array */
- public static function getAllAddress()
- {
- //return static::all()->toArray();
- $model = static::orderBy('parentid', 'asc')->get();
- if ($model->isEmpty()) {
- return array();
- }
- return $model->toArray();
- }
- }
|