Procházet zdrojové kódy

model app version

ifah
Nur Zarifah Mohd Zain před 5 roky
rodič
revize
b32740dac2
1 změnil soubory, kde provedl 17 přidání a 0 odebrání
  1. 17
    0
      app/Model/AppsVersion.php

+ 17
- 0
app/Model/AppsVersion.php Zobrazit soubor

@@ -0,0 +1,17 @@
<?php

namespace App\Model;

use Jenssegers\Mongodb\Eloquent\Model as Eloquent;
use Jenssegers\Mongodb\Eloquent\SoftDeletes;


class AppsVersion extends Eloquent
{
use SoftDeletes;

protected $connection = 'mongodb';
protected $collection = 'app_version';

protected $guarded = ['_id'];
}

Načítá se…
Zrušit
Uložit