Doctertimes.php 235 B

123456789101112131415
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Doctertimes extends Model
  5. {
  6. //
  7. protected $table = 'docter_times';
  8. public function docter(){
  9. return $this->hasOne(Docter::class);
  10. }
  11. }