trs_matrimony/app/Models/Gothram.php
2024-08-22 09:31:12 +05:30

17 lines
301 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class Gothram extends Model
{
use SoftDeletes;
public function spiritual_backgrounds()
{
return $this->hasmany(SpiritualBackground::class)->withTrashed();
}
}