1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-09 20:52:56 +01:00

L5 Namespacing Update

This commit is contained in:
Jeramy Simpson 2015-03-24 17:34:27 +10:00
parent 651e06fdb9
commit 7718d8b8cb
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
<?php namespace App\Models;
use Eloquent;
class Language extends Eloquent
{
public $timestamps = false;

View File

@ -22,7 +22,7 @@ class AddDanishTranslation extends Migration {
*/
public function down()
{
$language = Language::whereLocale('da')->first();
$language = \App\Models\Language::whereLocale('da')->first();
$language->delete();
}