AccountType.php 277 B

1234567891011121314151617
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class AccountType extends Model
  5. {
  6. protected $table = "acc_type";
  7. protected $guarded=['id'];
  8. function acc_head()
  9. {
  10. return $this->hasMany('App\Models\AccountHead','type_id');
  11. }
  12. }