File "Bank_detail.php"
Full Path: /home/isoftco/public_html/hrm/app/Models/Bank_detail.php
File size: 394 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Models;
/**
* Class Bank_detail
* @package App\Models
*/
class Bank_detail extends BaseModel
{
protected $fillable = ['employee_id', 'account_name', 'account_number', 'bank', 'pan', 'ifsc', 'branch'];
protected $guarded = [''];
/**
* @return mixed
*/
public function employee()
{
return $this->belongsTo(Employee::class);
}
}