This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
zend_extension=xdebug.so | |
xdebug.mode=debug | |
xdebug.discover_client_host=1 | |
xdebug.client_port = 9003 | |
xdebug.max_nesting_level = 512 | |
xdebug.idekey=VSCODE | |
xdebug.client_host=10.0.2.2 | |
xdebug.start_with_request=yes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/****************************************************************************************************** | |
* Job Event Listeners | |
* https://github.com/laravel/framework/tree/10.x/src/Illuminate/Queue/Events | |
*/ | |
Event::listen(function (JobTimedOut $event) { | |
Log::warning("Job Timed Out: {$event->job->resolveName()}", [ | |
'job_uuid' => $event->job->uuid(), | |
'attempts' => $event->job->attempts(), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Models; | |
use Illuminate\Database\Eloquent\Factories\HasFactory; | |
use Corcel\Model\Post as Corcel; | |
class Post extends Corcel | |
{ | |
use HasFactory; |
OlderNewer