'array', ]; /** * The table associated with the model. * * @var string */ protected $table = 'sheet_spreadsheets'; /** * user who created a sheet. */ public function createdBy() { return $this->belongsTo(\App\User::class, 'created_by'); } public function shares() { return $this->hasMany(\Modules\Spreadsheet\Entities\SpreadsheetShare::class, 'sheet_spreadsheet_id'); } }