123456789101112131415161718 |
- <?php
-
- namespace App\Models;
-
- use Illuminate\Database\Eloquent\Model;
-
- class Comment extends Model
- {
-
- protected $fillable = [
- 'wechat_id', // wechat
- 'order_type', // 订单类型
- 'order_id', // 订单id
- 'title', // 评论标题
- 'content', // 评论内容
- 'show' // 是否可视0, 1
- ];
- }
|