12345678910111213141516171819202122 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- use Illuminate\Database\Eloquent\SoftDeletes;
- class BindPhoneRecord extends Model
- {
-
- use SoftDeletes;
- protected $table = 'bind_phone_record';
- protected $guarded = [];
- }
|