Version 1.0

This commit is contained in:
2021-01-27 11:05:27 +03:00
parent 6a360ae315
commit b1e0b1cf5b
37 changed files with 6791 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;
}