| Path : /var/www/html/solarwindia/app/Models/ |
| Current File : //var/www/html/solarwindia/app/Models/Panel.php |
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class Panel extends Model
{
use SoftDeletes;
//
/**
* Each Panel has one Register API
*/
public function register_api() {
return $this->hasOne('App\Models\RegisterAPI','id','api_type');
}
/**
* Each Panel has one Register API
*/
public function company() {
return $this->belongsTo('App\Models\Company','company_id','id');
}
}