Working on activities

This commit is contained in:
David Bomba 2019-04-20 11:54:11 +10:00
parent 61b7481eda
commit c9fcc465ff
2 changed files with 11 additions and 1 deletions

View File

@ -5,7 +5,7 @@ namespace App\Listeners\Client;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;
class CreatedClient
class CreatedClient implements ShouldQueue
{
/**
* Create the event listener.

10
app/Models/Activity.php Normal file
View File

@ -0,0 +1,10 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Activity extends Model
{
//
}