28 lines
		
	
	
		
			526 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			526 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace kernel\modules\notification\models\forms;
 | |
| 
 | |
| use kernel\FormModel;
 | |
| 
 | |
| /**
 | |
|  * @property string $key
 | |
|  * @property string $value
 | |
|  * @property string $label
 | |
|  * @property integer $status
 | |
|  */
 | |
| class CreateNotificationForm extends FormModel
 | |
| {
 | |
| 
 | |
|     public function rules(): array
 | |
|     {
 | |
|         return [
 | |
|             'user_id' => 'required|integer',
 | |
|             'message' => 'required',
 | |
|             'is_read' => '',
 | |
|             'data' => '',
 | |
|             'type' => 'required',
 | |
|             'subject' => '',
 | |
|         ];
 | |
|     }
 | |
| 
 | |
| } |