| 6 | namespace App\Models\ChiHe; |
| 7 | use Illuminate\Database\Eloquent\Model; |
| 8 | class Subscribe extends Model |
| 9 | { |
| 10 | |
| 11 | protected $table = 'chihe_subscribe'; |
| 12 | protected $fillable = [ |
| 13 | 'id', |
| 14 | 'user_id', |
| 15 | 'created_at', |
| 16 | 'template_id', |
| 17 | 'is_send', |
| 18 | ]; |
| 19 | const UPDATED_AT = null; |
| 20 | } |
| 21 |
nothing calls this directly
no outgoing calls
no test coverage detected