Base64 Rule
Validate a Base64 Encoded String
117k Downloads / Month
Open Source MIT License
117k Downloads / Month
Open Source MIT License
Discover how to validate Base64 encoded strings with the additional validation rules of Intervention Validation for your Laravel application.
public Intervention\Validation\Rules\Base64::__construct()
The field under validation must be Base64 encoded.
none
use Illuminate\Support\Facades\Validator;
use Intervention\Validation\Rules\Base64;
$validator = Validator::make($request->all(), [
'attribute-key' => new Base64(),
]);
Edit