1234567891011121314151617181920212223242526 |
- <?php
- namespace App\Repositories\Models\Wechat;
- use App\Repositories\Models\Model;
- class Rescource extends Model
- {
- /**
- * @var string
- */
- protected $table = 'wechat_resources';
- protected $guarded = [];
- /**
- * The attributes excluded from the model's JSON form.
- *
- * @var array
- */
- protected $hidden = [];
- protected $casts = [
- 'data' => 'json'
- ];
- }
|