v0.9.13 - Added notifications in events, when an event you're signed up to gets canceled.

This commit is contained in:
frederikpyt
2020-08-14 07:36:42 +02:00
parent bd0d504ab8
commit 9e0f449bd3
8 changed files with 98 additions and 13 deletions
+12
View File
@@ -0,0 +1,12 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Notification extends Model
{
protected $fillable = [
'user_id', 'message'
];
}