for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Hechoenlaravel\JarvisFoundation\FieldGenerator\Events;
use Hechoenlaravel\JarvisFoundation\Events\Event;
class FieldWasDeleted extends Event
{
/**
* Field generated
* @var
*/
public $field;
* The model info deleted
* @param array $modelArray
public function __construct($modelArray)
$this->field = $modelArray;
}