PHP Laravel – URL 을 통해 변수값 넘기기

<?php/*|————————————————————————–| Web Routes|————————————————————————–|| Here is where you can register web routes for your application. These| routes are loaded by the […]

PHP Laravel – 새로운 페이지 만들기

\resources\views\pages\about.blade.php About 위와 같이 파일을 만들어줌  \routes\web.php <?php/*|————————————————————————–| Web Routes|————————————————————————–|| Here is where you can register web routes for your […]

PHP Laravel – Hello world

\routes\web.php   <?php/*|————————————————————————–| Web Routes|————————————————————————–|| Here is where you can register web routes for your application. These| routes are loaded by […]

PHP Laravel – Forms & HTML

                {{ Form::open(array(‘action’ => ‘PostsController@store’,’method’=>’POST’)) }}               […]

PHP Laravel – 데이터베이스 연결 및 CRUD 작업준비

#>php artisan make:controller PostsController –resource생성위치 아래-\app\Http\Controllers\Postscontroller.php=================================================================#>php artisan make:model Post -m생성위치 아래-\app\Post.php\database\migrations\2019_03_18_070923_create_posts_table.php 위 생성된 파일을 아래와 같이 변경 한다. public function […]