https://github.com/truongbo17/laravel-query-execute
A simple package that helps you interact directly with the database, inspired by redash. When running commands that affect the database structure, you can rollback if necessary.
https://github.com/truongbo17/laravel-query-execute
laravel laravel-query laravel-query-execute query redash rollback-db
Last synced: 2 months ago
JSON representation
A simple package that helps you interact directly with the database, inspired by redash. When running commands that affect the database structure, you can rollback if necessary.
- Host: GitHub
- URL: https://github.com/truongbo17/laravel-query-execute
- Owner: truongbo17
- Created: 2024-07-16T14:34:11.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-22T15:36:15.000Z (almost 2 years ago)
- Last Synced: 2025-03-26T19:26:02.439Z (over 1 year ago)
- Topics: laravel, laravel-query, laravel-query-execute, query, redash, rollback-db
- Language: Blade
- Homepage:
- Size: 1.39 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Laravel Query Execute
### Description
A simple package that helps you interact directly with the database, inspired by redash. When running commands that affect the database structure, you can rollback if necessary.
### Installation
Install the package:
```
composer require truongbo/laravel-query-execute
```
Run test:
```php
./vendor/bin/phpunit
```
Publish package files (config & asset):
```php
php artisan vendor:publish --provider="Bo\LaravelQueryExecute\LaravelQueryExecuteServiceProvider"
```