7
rant1ng
3y

CLEARLY! ...

I'm drunk.

//motherfucking populate the mailings table yo
Route::get('fuckman', function () {
$statuses = array('queued', 'sent', 'failure');
$statusKey = rand(0,2);
$mailings=App\Models\Mailing::all();

foreach($mailings as $mailing){
$mailing->status=$statuses[$statusKey];
$mailing->save();
}

return 'fuckyou';

});

Comments
Add Comment