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:
parent
651e06fdb9
commit
7718d8b8cb
@ -1,5 +1,7 @@
|
||||
<?php namespace App\Models;
|
||||
|
||||
use Eloquent;
|
||||
|
||||
class Language extends Eloquent
|
||||
{
|
||||
public $timestamps = false;
|
||||
|
@ -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();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user