ISRC Rule
Validate International Standard Recording Codes
155k Downloads / Month
Open Source MIT License
155k Downloads / Month
Open Source MIT License
Validate International Standard Recording Codes (ISRC) in Laravel with Intervention Validation. Music industry IDs.
public Intervention\Validation\Rules\Isrc::__construct()
Checks for a valid International Standard Recording Code.
use Illuminate\Support\Facades\Validator; use Intervention\Validation\Rules\Isrc; // validate code $validator = Validator::make($request->all(), [ 'attribute-key' => new Isrc(), ]);