Posts

Showing posts from December, 2014

Laravelde iki database kullanma

app/config/database.php < ? php return array (        'default' = > 'mysql' ,        'connections' = > array (            # Our primary database connection          'mysql' = > array (              'driver'      = > 'mysql' ,              'host'        = > 'host1' ,              'database'    = > 'database1' ,              'username'    = > 'user1' ,              'password'    = > 'pass1'              'charset'    = > 'utf8' ,              'collation' = > 'utf8_unicode_ci' ,              'prefix'      = > '' ,          ) ,            # Our secondary database connection          'mysql_2' = > array (              'driver'      = > 'mysql' ,              'host'        = > 'host2'

The encryption key must be a random string. hatası

Laravel güncellemesinden sonra şöyle bir hata aldım. The encryption key must be a random string.   Komut satırına şunu yazıyoruz   php artisan key:generate --env= local   oluşan kodu  app.phpde 'key' => '-----------', kısmına yapıştırıyoruz

Laravelde Modüllerle çalışma

https://github.com/creolab/laravel-modules adresinde yapının orjinali mevcut app/ |-- modules |-- auth |-- controllers |-- models |-- views |-- module.json |-- content |-- controllers |-- models |-- views |-- module.json |-- shop |-- module.json |-- system |-- module.json   şeklinde bir yapıyı oluşturmak için  composer.json da require nin içine "creolab/laravel-modules": "dev-master" ekliyoruz autoload içine "app/modules" ekliyoruz "app/config/app.php" providers içine 'Creolab\LaravelModules\ServiceProvider', composer update yapıyoruz