23 lines
393 B
PHP
23 lines
393 B
PHP
<?php
|
|
|
|
namespace Modules\Spreadsheet\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class SpreadsheetShare extends Model
|
|
{
|
|
/**
|
|
* The attributes that aren't mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $guarded = ['id'];
|
|
|
|
/**
|
|
* The table associated with the model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $table = 'sheet_spreadsheet_shares';
|
|
}
|