Explorar el Código

model app version

ifah
Nur Zarifah Mohd Zain hace 5 años
padre
commit
b32740dac2
Se han modificado 1 ficheros con 17 adiciones y 0 borrados
  1. 17
    0
      app/Model/AppsVersion.php

+ 17
- 0
app/Model/AppsVersion.php Ver fichero

@@ -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'];
}

Cargando…
Cancelar
Guardar