mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 12:33:56 +00:00
20 lines
331 B
PHP
20 lines
331 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
|
|
|
|
class Voucher extends AbstractModel
|
|
{
|
|
protected $table = 'vouchers';
|
|
|
|
/**
|
|
* @return HasMany
|
|
*/
|
|
public function redemptions(): HasMany
|
|
{
|
|
return $this->HasMany(VoucherRedemption::class, 'voucher_id', 'id');
|
|
}
|
|
}
|