🎉 Hello world

This commit is contained in:
2018-04-09 21:38:31 +02:00
commit 5173017624
41 changed files with 4709 additions and 0 deletions

10
app/Events/Event.php Normal file
View File

@@ -0,0 +1,10 @@
<?php
namespace App\Events;
use Illuminate\Queue\SerializesModels;
abstract class Event
{
use SerializesModels;
}