2019-02-17 21:34:46 +11:00
|
|
|
<?php
|
2019-05-11 13:32:07 +10:00
|
|
|
/**
|
2020-09-06 19:38:10 +10:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 13:32:07 +10:00
|
|
|
*
|
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
|
*
|
2023-01-29 09:21:40 +11:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 13:32:07 +10:00
|
|
|
*
|
2021-06-16 16:58:16 +10:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-05-11 13:32:07 +10:00
|
|
|
*/
|
2019-02-17 21:34:46 +11:00
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Class Size.
|
2023-03-08 18:33:42 +11:00
|
|
|
*
|
|
|
|
|
* @property int $id
|
|
|
|
|
* @property string $name
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|StaticModel company()
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|StaticModel exclude($columns)
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Size newModelQuery()
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Size newQuery()
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Size query()
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Size whereId($value)
|
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Size whereName($value)
|
|
|
|
|
* @mixin \Eloquent
|
2019-02-17 21:34:46 +11:00
|
|
|
*/
|
2019-09-12 11:28:41 +10:00
|
|
|
class Size extends StaticModel
|
2019-02-17 21:34:46 +11:00
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* @var bool
|
|
|
|
|
*/
|
|
|
|
|
public $timestamps = false;
|
|
|
|
|
}
|