[lavuebd]라라벨에 ERD 기준으로 model을 만들어 보죠
member는 laravel에 있는 user를 그냥 사용합니다.
php artisan make:model group -m
php artisan make:model board -m
php artisan make:model post -m
php artisan make:model comment -m
app/group.php app/board.php app/post.php 와
database/migrations/날짜_create_groups_table.php, create_boards_table.php, create_posts_table.php, create_comments_table.php
가 만들어진것을 확인 할수 있습니다.
왼쪽에서 creat_users_table.php를 클릭해서 (vscode 기준입니다.)
$table->string('name'); 을 alt+shift+down arrow로 라인을 카피한후에
name을 nickname으로 변경합니다. 각 테이블에 대한 Field는 여기 참조
$table->increments('id');
$table->string('name');
$table->string('nickname');
$table->string('email')->unique();
$table->timestamp('email_verified_at')->nullable();
$table->string('password');
$table->rememberToken();
$table->timestamps();
groups
$table->increments('id');
$table->string('name');
$table->tinyinteger('order')
$table->timestamps();
boards
$table->increments('id');
$table->integer('group_id')->unsigned();
$table->string('name');
$table->string('mobile_name');
$table->tinyinteger('order');
$table->timestamps();
posts
$table->increments('id');
$table->integer('member_id')->unsigned();
$table->integer('board_id')->unsigned();
$table->string('title');
$table->mediumtext('content');
$table->string('username');
$table->string('nickname');
$table->timestamps();
comments
$table->increments('id');
$table->integer('member_id')->unsigned();
$table->integer('board_id')->unsigned();
$table->integer('post_id')->unsigned();
$table->mediumtext('content');
$table->string('username');
$table->string('nickname');
$table->timestamps();
게시판 목록
PHP프레임워크
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 139 | 기타 | 7년 전 | 1728 | ||
| 138 | 라라벨 | 7년 전 | 2338 | ||
| 137 | 라라벨 | 7년 전 | 1302 | ||
| 136 | 라라벨 | 7년 전 | 6264 | ||
| 135 | 기타 | 7년 전 | 1651 | ||
| 134 | 라라벨 | 7년 전 | 2170 | ||
| 133 | 라라벨 | 7년 전 | 1653 | ||
| 132 | 라라벨 | 7년 전 | 1750 | ||
| 131 | 라라벨 | 7년 전 | 1741 | ||
| 130 | 코드이그나이터 |
차가운잎사귀
|
7년 전 | 2734 | |
| 129 | 라라벨 | 7년 전 | 1397 | ||
| 128 | 라라벨 |
차가운잎사귀
|
7년 전 | 1423 | |
| 127 | 기타 | 7년 전 | 1623 | ||
| 126 | 라라벨 | 7년 전 | 1602 | ||
| 125 | 라라벨 | 7년 전 | 1712 | ||
| 124 | 기타 | 7년 전 | 1598 | ||
| 123 | 일반 | 7년 전 | 1842 | ||
| 122 | 라라벨 | 7년 전 | 1210 | ||
| 121 | 라라벨 | 7년 전 | 1919 | ||
| 120 | 라라벨 | 7년 전 | 2028 | ||
| 119 | 기타 | 7년 전 | 1830 | ||
| 118 | 라라벨 | 7년 전 | 1327 | ||
| 117 | 라라벨 | 7년 전 | 1047 | ||
| 116 | 라라벨 | 8년 전 | 1505 | ||
| 115 | 라라벨 | 8년 전 | 1428 | ||
| 114 | 라라벨 | 8년 전 | 1442 | ||
| 113 | 기타 | 8년 전 | 1525 | ||
| 112 | 라라벨 | 8년 전 | 1941 | ||
| 111 | 기타 | 8년 전 | 3405 | ||
| 110 | 라라벨 | 8년 전 | 1643 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기