@extends('layouts.default') @section('content')

Firefly
Migration instructions

  1. Open app/config/database.php
  2. Fill in the old-firefly connection records.
  3. Refresh this page.

It should look something like this:

return [
    'fetch'       => PDO::FETCH_CLASS,
    'default'     => 'mysql',
    'connections' => [
        'mysql'  => [
            'driver'    => 'mysql',
            'host'      => 'localhost',
            'database'  => '(current database)',
            'username'  => '',
            'password'  => '',
            'charset'   => 'utf8',
            'collation' => 'utf8_unicode_ci',
            'prefix'    => '',
        ],
        
        'old-firefly'  => [
            'driver'    => 'mysql',
            'host'      => 'localhost',
            'database'  => '(previous database)',
            'username'  => '',
            'password'  => '',
            'charset'   => 'utf8',
            'collation' => 'utf8_unicode_ci',
            'prefix'    => '',
        ],
    ],

This page will disappear when the connection is valid.

Current error: {{$error or ''}}

@stop