/
home
/
obinna
/
html
/
cravings
/
app
/
Http
/
Services
/
Upload File
HOME
<?php namespace App\Http\Services; use Illuminate\Support\Facades\Validator; /** * Extend the validator class to validate API requests */ class ApiValidator extends Validator { public function validate() { if ($this->fails()) { return $this->failedRules; } } }