http://rf5cqoxqlitdx4umuce5dgihjzabql4hs3zjkvs3em7xzjfa5yyhkeqd.onion/om/openmonero-nojs/commit/14af9bc2b0707b8498c9bb4889c256692a997571
$this -> validateData ( $data , [ 'title' => 'required|max_length[255]|min_length[3]' , 'body' => 'required|max_length[5000]|min_length[10]' , ])) { // The validation fails, so returns the form. return $this -> new (); } // Gets the validated data. $post = $this -> validator -> getValidated (); $model = model ( NewsModel :: class ); $model -> save ([ 'title' => $post [ 'title' ], 'slug' => url_title ( $post [ 'title' ], '-' , true ), 'body' => $post [ 'body' ], ]); return view (...