NoteComment.php 341 B

12345678910111213141516
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class NoteComment extends Model
  5. {
  6. protected $table='notes_comment';
  7. public function get_user(){
  8. return $this->hasOne(User::class,'id','user_id');
  9. }
  10. public function get_reply(){
  11. return $this->hasOne(NoteComment::class,'pid','id');
  12. }
  13. }