| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 25 | public function rules() |
||
| 26 | { |
||
| 27 | return [ |
||
| 28 | 'project' => 'required|exists:projects,id', |
||
| 29 | 'name' => 'required|string|max:255', |
||
| 30 | 'start' => 'required|date_format:Y-m-d H:i:s', |
||
| 31 | 'end' => 'required|date_format:Y-m-d H:i:s|after:start', |
||
| 32 | 'location' => 'required|exists:locations,id', |
||
| 33 | 'seatmap' => 'required|exists:seat_maps,id', |
||
| 34 | 'pricelist' => 'required|exists:price_lists,id' |
||
| 35 | ]; |
||
| 38 |