1234567891011121314151617 |
- <?php
- /**
- * Created by PhpStorm.
- * User: Administrator
- * Date: 2019-06-21
- * Time: 17:34
- */
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- class CommunityMemberStatistics extends Model {
- protected $table = 'community_member_statistics';
- protected $guarded = [];
- }
|