Skip to content

PakCu/Laravel

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laravel

A simple Blog application for How Framework.

Requirement

  • Apache Web Server
  • PHP 5.3.2 or above
  • MySQL

Installation

  1. storage folder need to have writable permission. chmod -Rf 777 storage/

  2. Copy and edit application/config/application.sample.php to application/config/application.php

  3. Copy and edit application/config/database.sample.php to application/config/database.php

  4. Create a new database, we suggest to use MySQL create database howframework_laravel.

  5. Update database configuration based on you MySQL configuration in application/config/database.php:

     'mysql' => array(
     	'driver'   => 'mysql',
     	'host'     => 'localhost',
     	'database' => 'howframework_laravel',
     	'username' => 'root',
     	'password' => '',
     	'charset'  => 'utf8',
     	'prefix'   => '',
     ),
    
  6. Run php artisan migrate:install to run migration table installation.

  7. Run php artisan migrate to update you're database to latest migration.

About

Simple Blog with LaravelPHP

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published