<?php namespace App\Listeners; use App\Events\LogTrainingEvent; use App\Log; use Illuminate\Contracts\Queue\ShouldQueue; class LogTrainingEventListener implements ShouldQueue { public $queue = 'logs'; protected $log; public function __construct(Log $log) { $this->log = $log; } public function handle($event) { $log = new Log(); $log->fill($event->records['formatted']); $log->save(); } public function subscribe($events) { $events->listen( LogTrainingEvent::class, 'App\Listeners\LogTrainingEventListener@handle' ); } }