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