Last active
February 9, 2019 19:03
-
-
Save Konafets/09788b0158b54c7ebea989594f5d275a to your computer and use it in GitHub Desktop.
Validate inside an action.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php namespace App\Models; | |
use Illuminate\Database\Eloquent\Model; | |
class BlogPost extends Model | |
{ | |
public static $createRules = [ | |
'title' => 'required|unique:posts|max:255', | |
'body' => 'required', | |
]; | |
public static $updateRules = [ | |
'title' => 'required|unique:posts|max:255', | |
'body' => 'required', | |
]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment