12345678910111213141516171819202122 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- class PostComment extends Model
- {
- protected $table = 'post_comment';
- protected $guarded = [];
- public function reply()
- {
- return $this->hasMany('App\Models\PostComment', 'parent_id', 'id');
- }
- }
|