Files
timebank-cc-public/app/Models/TransactionType.php
Ronald Huynen 2547717edb Initial commit
2026-03-23 21:37:59 +01:00

20 lines
355 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class TransactionType extends Model
{
use HasFactory;
/**
* Get the transactions for the transaction type.
*/
public function transactions()
{
return $this->hasMany(Transaction::class);
}
}