crud

    [Laravel] Ajax로 CRUD 게시판 만들기 (1)

    📖 MVC(Model View Controller) 기본 셋팅 1. Laravel 프로젝트 생성 우선 cmd 창 혹은 git bash 에서 경로를 지정한 후 컴포저를 사용하여 8.x 버전의 라라벨 프로젝트를 생성합니다. composer create-project laravel/laravel="8.x" ajax_crud 2. DB 연동 및 table, column 생성 터미널에서 artisan 명령어를 입력하여 모델, 마이그레이션, 컨트롤러 파일을 생성합니다. php artisan make:model Student -mc Student.php 모델 파일을 열어 table 및 column 연동합니다.