LaravelPackages.net
Acme Inc.
Toggle sidebar
saifur/dbhelper

This a package all about DB helper

3
0
v1.0.1
About saifur/dbhelper

saifur/dbhelper is a Laravel package for this a package all about db helper. It currently has 0 GitHub stars and 3 downloads on Packagist (latest version v1.0.1). Install it with composer require saifur/dbhelper. Discover more Laravel packages by saifur or browse all Laravel packages to compare alternatives.

Last updated

Saifur-DBHelper

A DB Helper providing features like DB backup

Total Downloads Latest Stable Version License

Contents

Documentation, Installation, and Usage Instructions

This package allows you to manage your logs.

Once installed you can do stuff like this:

Commands

composer require saifur/dbhelper
composer dump-autoload
php artisan vendor:publish --tag=public --force

API

Request: Server DB Full Backup

  • Method: POST
  • URL: http://localhost:8001/saifur/db-helper/db-backup/server-db-full-backup
  • Headers:
    • Authorization: Bearer <your_token>
    • Content-Type: application/json
  • Body:
    • form-data: | Key | Value | |------------------------------|---------------| | except_tables[0] | activity_log | | except_tables[1] | audit_trail | | table_rules[0][table_name] | audit_trail | | table_rules[0][row_limit] | 100 | | table_rules[0][order_by] | id | | table_rules[0][order_type] | DESC | | table_rules[1][table_name] | activity_log | | table_rules[1][row_limit] | 100 | | table_rules[1][order_by] | id | | table_rules[1][order_type] | DESC |

Request: Server DB Structure Backup

  • Method: POST
  • URL: http://localhost:8001/saifur/db-helper/db-backup/server-db-structure-backup
  • Headers:
    • Authorization: Bearer <your_token>
    • Content-Type: application/json

Request: Server DB Data Backup

  • Method: POST
  • URL: http://localhost:8001/saifur/db-helper/db-backup/server-db-data-backup
  • Headers:
    • Authorization: Bearer <your_token>
    • Content-Type: application/json
  • Body:
    • form-data:
      • except_tables[0]: activity_log
      • except_tables[1]: audit_trail
      • table_rules[0][table_name]: audit_trail
      • table_rules[0][row_limit]: 100
      • table_rules[0][order_by]: id
      • table_rules[0][order_type]: DESC
      • table_rules[1][table_name]: activity_log
      • table_rules[1][row_limit]: 100
      • table_rules[1][order_by]: id
      • table_rules[1][order_type]: DESC

Request: Server DB Status

  • Method: POST
  • URL: http://localhost:8001/saifur/db-helper/db-backup/server-db-status
  • Headers:
    • Authorization: Bearer <your_token>
    • Content-Type: application/json
  • Body:
    • form-data:
      • view: html

Contributor

  • Md. Saifur Rahman

|Portfolio | CV | LinkedIn | GitHub | Stack Overflow | |-|-|-|-|-| | Hackerrank | Beecrowd | LeetCode | YouTube| |

Alternatives

License

The MIT License (MIT). Please see License File for more information.

Comments