17 lines
301 B
PHP
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();
|
|
}
|
|
}
|