mirror of
https://github.com/nothingworksinc/ticketbeast.git
synced 2026-01-26 03:04:05 +00:00
19 lines
301 B
PHP
19 lines
301 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Notifications\Notifiable;
|
|
use Illuminate\Foundation\Auth\User as Authenticatable;
|
|
|
|
class User extends Authenticatable
|
|
{
|
|
use Notifiable;
|
|
|
|
protected $guarded = [];
|
|
|
|
public function concerts()
|
|
{
|
|
return $this->hasMany(Concert::class);
|
|
}
|
|
}
|