A Laravel application for managing actor information submissions.
- Actor information form submission
- Data validation and storage
- View submitted actor data
- RESTful API endpoint
- Clone the repository
- Install dependencies:
composer install
- Copy environment file:
cp .env.example .env
- Generate app key:
php artisan key:generate
- Run migrations:
php artisan migrate
- Start server:
php artisan serve
- Visit
/
to submit actor information - Visit
/actors
to view submissions - API endpoint:
GET /api/actors/prompt-validation
Run tests with: php artisan test
- Laravel 12.x
- Bootstrap 5
- SQLite
- PHPUnit