/
hikqri
/
up
Обзор
Документация
Войти
/
hikqri
/
up
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
app/Models/OrderItem.php
34 строки
562 B
Myckaa
first_commit
26 июн 2026, 18:36
26 июн 2026, 18:36
8095503
Код
Авторство
О чём код?
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class OrderItem extends Model { protected $fillable = [ 'order_id', 'product_id', 'quantity', 'price', ]; protected $casts = [ 'price' => 'decimal:2', ]; public function order() { return $this->belongsTo(Order::class); } public function product() { return $this->belongsTo(Product::class); } public function subtotal(): float { return $this->price * $this->quantity; } }