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 – CKEDITOR 사용시 ERROR : CKEDITOR is not defined
라라벨에서 ckeditor을 사용시 가끔 아래와 같이 “CKEDITOR is not defined” 에러를 만나게 된다. CKEDITOR 실행을 화면이 실행후 몇초 뒤에 되도록 […]
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 […]
PHP Laravel – Controll 파일 만들기
<?phpnamespace App\Http\Controllers;use Illuminate\Http\Request;class PagesController extends Controller{ // 여기다 관련 함수를 만들어 넣으면 됨 쭈욱 ~!~}