ctrlpanel/app/Models/Product.php

53 lines
1 KiB
PHP
Raw Normal View History

2021-06-05 09:26:32 +00:00
<?php
namespace App\Models;
use Hidehalo\Nanoid\Client;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Spatie\Activitylog\Traits\LogsActivity;
class Product extends Model
{
use HasFactory, LogsActivity;
public $incrementing = false;
protected $guarded = ['id'];
2021-10-01 21:21:49 +00:00
public static function boot()
{
2021-06-05 09:26:32 +00:00
parent::boot();
2021-10-01 21:21:49 +00:00
static::creating(function (Product $product) {
2021-06-05 09:26:32 +00:00
$client = new Client();
$product->{$product->getKeyName()} = $client->generateId($size = 21);
});
}
2021-06-25 21:42:53 +00:00
public function getHourlyPrice()
{
return ($this->price / 30) / 24;
}
public function getDailyPrice()
{
return ($this->price / 30);
}
public function getWeeklyPrice()
{
return ($this->price / 4);
}
2021-06-05 09:26:32 +00:00
/**
* @return BelongsTo
*/
public function servers(): BelongsTo
{
2021-10-01 21:21:49 +00:00
return $this->belongsTo(Server::class, 'id', 'product_id');
2021-06-05 09:26:32 +00:00
}
}