15 lines
267 B
PHP
15 lines
267 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class operationsMembers extends Model
|
|
{
|
|
//
|
|
protected $primaryKey = 'id';
|
|
protected $table = 'operationsMembers';
|
|
|
|
protected $fillable = ['operationID', 'memberID', 'privateTransport'];
|
|
}
|