LaravelPackages.net
Acme Inc.
Toggle sidebar
legalworks/laravel-isbn-tools

Casting and validating ISBN

8
1
v0.0.2
About legalworks/laravel-isbn-tools

legalworks/laravel-isbn-tools is a Laravel package for casting and validating isbn. It currently has 1 GitHub stars and 8 downloads on Packagist (latest version v0.0.2). Install it with composer require legalworks/laravel-isbn-tools. Discover more Laravel packages by legalworks or browse all Laravel packages to compare alternatives.

Last updated

legalworks/laravel-isbn-tools

Latest Version on Packagist Total Downloads License

This package allows casting and validation of ISBN in Laravel Eloquent models, using the nicebooks/isbn-library.

Installation

Via Composer

$ composer require legalworks/laravel-isbn-tools

Usage

Casting

use Legalworks\IsbnTools\IsbnCast;

protected $casts = [
    'isbn' => IsbnCast::class,
];

Validation

use Legalworks\IsbnTools\IsbnValidator;

$request->validate([
    'isbn' => ['required', 'string', new IsbnValidator],
]);

Change log

Please see the changelog for more information on what has changed recently.

Testing

$ composer test

Contributing

Please see contributing.md for details and a todolist.

Security

If you discover any security related issues, please email author email instead of using the issue tracker.

Credits

License

license. Please see the license file for more information.

Comments