for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class DoctorDetail extends Model
{
/**
* @var string
*/
protected $table = 'doctor_details';
* @var bool
public $timestamps = true;
* @var array
protected $dates = [
'created_at',
'updated_at'
];
* @return \Illuminate\Database\Eloquent\Relations\HasMany
// public function doctor()
// {
// return $this->('', '')
// }
// public function hospital()
// return $this->hasMany('App\Hospital', 'specialization_id');
}