mirror of
https://github.com/nothingworksinc/ticketbeast.git
synced 2026-01-26 03:04:05 +00:00
14 lines
208 B
PHP
14 lines
208 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Invitation extends Model
|
|
{
|
|
public static function findByCode($code)
|
|
{
|
|
return self::where('code', $code)->first();
|
|
}
|
|
}
|