shell bypass 403

[](https://packagist.org/packages/rappasoft/laravel-livewire-tables)
[](https://github.com/rappasoft/laravel-livewire-tables/actions/workflows/php-cs-fixer.yml)
[](https://github.com/rappasoft/laravel-livewire-tables/actions/workflows/run-tests.yml)
[](https://packagist.org/packages/rappasoft/laravel-livewire-tables)
A dynamic Laravel Livewire component for data tables.


### [Bootstrap 4 Demo](https://tables.laravel-boilerplate.com/bootstrap-4) | [Bootstrap 5 Demo](https://tables.laravel-boilerplate.com/bootstrap-5) | [Tailwind Demo](https://tables.laravel-boilerplate.com/tailwind) | [Demo Repository](https://github.com/rappasoft/laravel-livewire-tables-demo)
## Installation
You can install the package via composer:
``` bash
composer require rappasoft/laravel-livewire-tables
```
Please see the rest of the [installation instructions](https://rappasoft.github.io/laravel-livewire-tables-docs/start/Installation-&-Configuration).
## Usage
### [Read the documentation](https://rappasoft.github.io/laravel-livewire-tables-docs/)
## Basic Example
```php
<?php
namespace App\Http\Livewire\Admin\User;
use App\Domains\Auth\Models\User;
use Illuminate\Database\Eloquent\Builder;
use Rappasoft\LaravelLivewireTables\DataTableComponent;
use Rappasoft\LaravelLivewireTables\Views\Column;
class UsersTable extends DataTableComponent
{
public function columns(): array
{
return [
Column::make('Name')
->sortable()
->searchable(),
Column::make('E-mail', 'email')
->sortable()
->searchable(),
Column::make('Verified', 'email_verified_at')
->sortable(),
];
}
public function query(): Builder
{
return User::query();
}
}
```
### [See advanced example](https://rappasoft.github.io/laravel-livewire-tables-docs/usage/Advanced-Example-Table)
## To-do/Roadmap
- [x] Bootstrap 4 Template
- [x] Bootstrap 5 Template
- [x] Sorting By Relationships
- [x] User Column Selection
- [x] Drag & Drop (beta)
- [x] Column Search
- [x] Greater Configurability
- [ ] Collection/Query Support
- [ ] Test Suite (WIP)
## Testing
```bash
composer test
```
## Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
## Contributing
Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.
## Security Vulnerabilities
Please e-mail anthony@rappasoft.com to report any security vulnerabilities instead of the issue tracker.
## Credits
- [Anthony Rappa](https://github.com/rappasoft)
- [All Contributors](../../contributors)
## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.