반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- vue
- blockchain
- Sentinel
- 당사자표시정정신청서
- 전자소송
- 보정명령
- Bootstrap
- 홈택스
- 소액임금체불
- 사업자계좌
- Eclipse
- javascript
- Tutorial
- Blade
- 개인사업자
- Python
- as후기
- reactnative
- 이더리움
- auth
- php
- 코로나19
- cartalyst
- 코로나
- win32
- 인민공원
- Java
- elasticSearch
- Laravel
- 체당금
Archives
- Today
- Total
목록comment (1)
그냥 사는 이야기
Laravel 5.3 Blog System - Post And Comments
Post와 Comment 구현 Model App/Post class Post extends Model { protected $guarded = []; public function comments() { return $this->hasMany('App\Comment','on_post'); } public function author() { return $this->belongsTo('App\User','author_id'); } } App/Comment class Comment extends Model { protected $guarded = []; public function author() { return $this->belongsTo('App\User','from_user'); } public fun..
Development/Web
2020. 1. 22. 10:52