. */ /** * An interface to the assignment table in the database */ class Assignment extends OfferItem { use StandardCalculatable; /** {@inheritDoc} */ public $table = 'assignment', $fillable_columns = ['offerId', 'title', 'description', 'hours', 'price_per_hour', 'VAT_percentage']; /** {@inheritDoc} */ public function calculateSubtotal() { return $this->hours * $this->price_per_hour; } }