1 | <?php namespace Kris\LaravelFormBuilder\Events; |
||
5 | class AfterFormCreation { |
||
6 | |||
7 | /** |
||
8 | * @var $form Form |
||
9 | */ |
||
10 | protected $form; |
||
11 | |||
12 | /** |
||
13 | * Create a new event instance. |
||
14 | */ |
||
15 | public function __construct(Form $form) { |
||
18 | |||
19 | /** |
||
20 | * Return the event's form. |
||
21 | */ |
||
22 | public function getForm() { |
||
25 | |||
26 | } |
||
27 |