AppointmentConfig.php 411 B

12345678910111213141516171819
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class AppointmentConfig extends BaseModel
  5. {
  6. //
  7. protected $table = 'vr_appointment_config';
  8. protected $fillable = [
  9. 'name', 'websites_id','num','make_time_start','make_time_end','start_time','end_time'
  10. ];
  11. public function website()
  12. {
  13. return $this->hasOne(Website::class, 'id', 'websites_id');
  14. }
  15. }