mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
L5 Namespacing Update
This commit is contained in:
parent
651e06fdb9
commit
7718d8b8cb
@ -1,5 +1,7 @@
|
|||||||
<?php namespace App\Models;
|
<?php namespace App\Models;
|
||||||
|
|
||||||
|
use Eloquent;
|
||||||
|
|
||||||
class Language extends Eloquent
|
class Language extends Eloquent
|
||||||
{
|
{
|
||||||
public $timestamps = false;
|
public $timestamps = false;
|
||||||
|
@ -22,7 +22,7 @@ class AddDanishTranslation extends Migration {
|
|||||||
*/
|
*/
|
||||||
public function down()
|
public function down()
|
||||||
{
|
{
|
||||||
$language = Language::whereLocale('da')->first();
|
$language = \App\Models\Language::whereLocale('da')->first();
|
||||||
$language->delete();
|
$language->delete();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user