File "Subscription.php"
Full Path: /home/isoftco/public_html/hrm/app/Models/Subscription.php
File size: 235 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Subscription extends Model
{
protected $dates = ['created_at'];
public function company() {
return $this->belongsTo(Company::class);
}
}