Laravel Custom Validation rules correction
I'm creating a laravel custom Uppercase.php rule in my app/Rules namespace to check whether the title submitted starts with a capital letter if not should throw an error/ fail. class ArticleController extends Controller { public function store(Request $request) { $request->validate([…