bbec276da8
* #355 Calculate distance button in add/edit Flight page * Styling * Move add/edit flight logic out of controller and into service layer * Styling * Formatting * Run styleci against modules dir * Styleci config * Style fixes in /modules
16 lines
187 B
PHP
16 lines
187 B
PHP
<?php
|
|
|
|
namespace Modules\Sample\Models;
|
|
|
|
use App\Contracts\Model;
|
|
|
|
/**
|
|
* Class SampleTable
|
|
*/
|
|
class SampleTable extends Model
|
|
{
|
|
public $table = '';
|
|
|
|
protected $fillable = [];
|
|
}
|