6
5

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 3 years have passed since last update.

【Laravel】インストールから導入まで(XAMPP環境下)

Posted at

##やりたいこと##

  • WEBサーバーはxamppを使う
  • laravelで開発する

##前提##

  • xampp導入済み

##進めかた##

  • composerのインストール
  • laravelのインストール&プロジェクト作成

composerをインストールする

laravelはcomposerというPHPの管理プログラムを利用してインストールする
なのでまずはcomposerをインストールする
composer
スクリーンショット (21)_LI.jpg

コマンドプロンプトで下記を入力しインストールできたか確認する

$ composer -v

スクリーンショット (23)_LI.jpg

このようにバージョンが表示されればOK

Laravelをインストールする(同時にプロジェクトも作成)

コマンドプロンプトで下記を入力しインストールする(半角スペースに注意)
プロジェクト名と書かれた場所に好きなプロジェクト名を入れる

$ composer create-project laravel/laravel --prefer-dist プロジェクト名

XAMPPにデプロイする

xamppフォルダ内のhtdocsフォルダ内に上記で作成したlaravelプロジェクトのフォルダを全て入れる
htdocsフォルダはxamppの公開ディレクトリなので、htdocsフォルダ内にプロジェクトを設置すればWEBサーバーで公開される
ブラウザで確認

ブラウザで
http://localhost/プロジェクト名/public/
と入力し、laravelのトップ画面が表示されたらOK
la_inst_w_9.png

※xamppのApacheをスタートするのを忘れずに
スクリーンショット (27).png

以上です

6
5
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
6
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?