bataboom / pollsbb
add polls to your laravel app
dev-main
2024-06-12 12:46 UTC
Requires
- php: ^8.2
- illuminate/contracts: ^10.0||^11.0
- livewire/livewire: ^3.4
- spatie/laravel-package-tools: ^1.16
Requires (Dev)
- laravel/pint: ^1.14
- nunomaduro/collision: ^8.1.1||^7.10.0
- orchestra/testbench: ^9.0.0||^8.22.0
- pestphp/pest: ^2.34
- pestphp/pest-plugin-arch: ^2.7
- pestphp/pest-plugin-laravel: ^2.3
This package is auto-updated.
Last update: 2025-03-12 14:32:21 UTC
README
Installation
You can install the package via composer:
composer require bataboom/pollsbb:dev-main
You can publish and run the migrations with:
php artisan vendor:publish --tag="pollsbb-migrations"
php artisan migrate
You can publish the config file with:
php artisan vendor:publish --tag="pollsbb-config"
This is the contents of the published config file:
return [ 'user_model' => App\Models\User::class, ];
Optionally, you can publish the views using
php artisan vendor:publish --tag="pollsbb-views"
Usage
<x-app-layout> <livewire:create-poll /> @php $findPoll = \BataBoom\PollsBB\Models\Poll::all()->first(); @endphp <livewire:view-poll :poll="$findPoll" /> </x-app-layout> after create-poll is created it should auto redirect to view-poll but WIP, upgrading emit/etc from Livewire v2 to v3.
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.