2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Laravel5.7 トレーニング1(環境構築〜HelloWorld)

Last updated at Posted at 2019-03-27

目的

  • 後輩さんとともにLaravel案件にアサインされることになったので、後輩さんへのチュートリアルと復習を兼ねて書く
  • 対象はPHPはかける、Laravelは初級者向けくらい
  • 後輩さんはPHPはかける。フレームワークは初めて。そのぐらいでもわかるように書く

目標

  • CRUDアプリが自分で構築できるくらいを目指す

環境構築

Laradockが便利と聞いたのでそれ使います。

前提

  • Git
  • Docker

自分の環境

  • macOS Mojave 10.14.2
  • Docker Desktop for mac 2.0.0.2
  • Visual Studio Code 1.32.3

Laradock導入

基本的に公式を参照

.bash
# clone
[03:34:54] takai@MyMBP /Users/takai/laravel-training (0)
> git clone https://github.com/laradock/laradock.git
# Project directory 
[03:47:17] takai@MyMBP /Users/takai/laravel-training (0)
> mkdir hello-world
[03:47:28] takai@MyMBP /Users/takai/laravel-training (0)
> ll
total 0
drwxr-xr-x   2 takai  staff    64B  3 28 03:47 hello-world
drwxr-xr-x  77 takai  staff   2.4K  3 28 03:46 laradock
[03:47:35] takai@MyMBP /Users/takai/laravel-training (0)
> cd laradock/
[03:48:05] takai@MyMBP /Users/takai/laravel-training/laradock (0)
> cp env-example .env
  • ./laradoc/.env のAPP_CODE_PATH_HOSTを先ほど作成したプロジェクトの相対パスに編集
.env
# Point to the path of your applications code on your host
APP_CODE_PATH_HOST=../hello-world/
  • ここでPHP、MySQL、Nginx等々設定できる(今回はそのまま)

  • あとでわかったが、migrateがMysqlのversionによっては認証方式でこけるのでmy.confを編集する

./laradock/mysql/my.conf
# 末尾に追加
default_authentication_plugin= mysql_native_password
  • docker-compose upでコンテナ立ち上げ(結構かかった)
  • ここまででPHP、Nginx、MysqlはOK!
[04:00:48] takai@MyMBP /Users/takai/laravel-training/laradock (0) 
> docker-compose up -d nginx mysql
[04:20:48] takai@MyMBP /Users/takai/laravel-training/laradock (1) 
> docker-compose exec --user=laradock workspace  bash
laradock@c46d12c67821:/var/www$

image.png

  • とりあえずHelloWorld
../hello-world/hello-world.php
<?php
print "HelloWorld!\n";
  • ターミナルから確認
.sh
laradock@c46d12c67821:/var/www$ ls
hello-world.php
laradock@c46d12c67821:/var/www$ php hello-world.php 
HelloWorld!
# あとで邪魔になるので消しとく
laradock@c46d12c67821:/var/www$ rm hello-world.php

HelloWorld

  • LaravelProjectの作成
    composerでLaravelのプロジェクトを作成
laradock@4a6645da762b:/var/www$ composer create-project --prefer-dist laravel/laravel=5.7.* ./
  • ./hello-world/.envを編集
./hello-world/.env
DB_CONNECTION=mysql
DB_HOST=mysql
DB_PORT=3306
DB_DATABASE=default
DB_USERNAME=default
DB_PASSWORD=secret
laradock@4a6645da762b:/var/www$ php artisan migrate
Migration table created successfully.
Migrating: 2014_10_12_000000_create_users_table
Migrated:  2014_10_12_000000_create_users_table
Migrating: 2014_10_12_100000_create_password_resets_table
Migrated:  2014_10_12_100000_create_password_resets_table
  • Routerにhello-worldを追加
./hello-world/routes/web.php
<?php

Route::get('/', function () {
    return view('welcome');
});

// 追加
Route::get('/hello-world', function () {
    return view('hello');
}); 

  • viewを追加(welcome.blade.phpコピーして編集)
./hello-world/resources/views/hello.blade.php
<!doctype html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">

        <title>Hello</title>

        <!-- Fonts -->
        <link href="https://fonts.googleapis.com/css?family=Nunito:200,600" rel="stylesheet">

        <!-- Styles -->
        <style>
            html, body {
                background-color: #fff;
                color: #636b6f;
                font-family: 'Nunito', sans-serif;
                font-weight: 200;
                height: 100vh;
                margin: 0;
            }

            .full-height {
                height: 100vh;
            }

            .flex-center {
                align-items: center;
                display: flex;
                justify-content: center;
            }

            .position-ref {
                position: relative;
            }

            .top-right {
                position: absolute;
                right: 10px;
                top: 18px;
            }

            .content {
                text-align: center;
            }

            .title {
                font-size: 84px;
            }

            .links > a {
                color: #636b6f;
                padding: 0 25px;
                font-size: 13px;
                font-weight: 600;
                letter-spacing: .1rem;
                text-decoration: none;
                text-transform: uppercase;
            }

            .m-b-md {
                margin-bottom: 30px;
            }
        </style>
    </head>
    <body>
        <div class="flex-center position-ref full-height">
            @if (Route::has('login'))
                <div class="top-right links">
                    @auth
                        <a href="{{ url('/home') }}">Home</a>
                    @else
                        <a href="{{ route('login') }}">Login</a>

                        @if (Route::has('register'))
                            <a href="{{ route('register') }}">Register</a>
                        @endif
                    @endauth
                </div>
            @endif

            <div class="content">
                <div class="title m-b-md">
                    Hello Laravel Wolrd!
                </div>
            </div>
        </div>
    </body>
</html>

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?