PHPackages                             sabitahmad/laravel-steadfast - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. sabitahmad/laravel-steadfast

ActiveLibrary[API Development](/categories/api)

sabitahmad/laravel-steadfast
============================

Comprehensive Laravel package for SteadFast Courier API integration with bulk processing, return requests, caching, events, and advanced monitoring

v2.1.0(5mo ago)039↓100%MITPHPPHP ^8.1CI passing

Since Apr 4Pushed 4mo ago1 watchersCompare

[ Source](https://github.com/sabitahmadumid/laravel-steadfast)[ Packagist](https://packagist.org/packages/sabitahmad/laravel-steadfast)[ Docs](https://github.com/sabitahmadumid/laravel-steadfast)[ GitHub Sponsors](https://github.com/SabitAhmad)[ RSS](/packages/sabitahmad-laravel-steadfast/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (3)Dependencies (4)Versions (4)Used By (0)

Laravel SteadFast Courier Package
=================================

[](#laravel-steadfast-courier-package)

[![Latest Version on Packagist](https://camo.githubusercontent.com/666561e9e31b9c3ab0f2984134279d855d9883e6f268fe827fbbe2f8663fb700/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f736162697461686d61642f6c61726176656c2d7374656164666173742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/sabitahmad/laravel-steadfast)[![Total Downloads](https://camo.githubusercontent.com/98f10361af91b7c361d1097a3fc8b9bafdcd87e1ae2d7e6154f20149b7e8bd8b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f736162697461686d61642f6c61726176656c2d7374656164666173742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/sabitahmad/laravel-steadfast)

A comprehensive Laravel package for integrating with SteadFast Courier API. This package provides a clean, robust interface for managing orders, tracking shipments, and handling return requests with advanced features like bulk processing, caching, detailed logging, and event-driven architecture.

Features
--------

[](#features)

- **Complete API Coverage**: All SteadFast API endpoints implemented
- **Individual &amp; Bulk Orders**: Efficient single and batch order processing
- **Return Requests**: Create and manage return requests
- **Status Tracking**: Real-time shipment status tracking
- **Balance Management**: Account balance verification
- **Fraud Checker**: Customer reliability analysis via order history (NEW)
- **Queue Support**: Background processing for bulk operations
- **Comprehensive Validation**: Input validation with custom rules
- **Advanced Error Handling**: Specific exceptions for different error types
- **Intelligent Caching**: Optional response caching for better performance
- **Detailed Logging**: Request/response logging with statistics
- **Event System**: Events for bulk operations monitoring
- **Artisan Commands**: Built-in commands for testing and maintenance
- **Retry Logic**: Automatic retry with exponential backoff
- **Data Security**: Sensitive data filtering in logs

Installation
------------

[](#installation)

Install the package via Composer:

```
composer require sabitahmad/laravel-steadfast
```

Install and configure the package:

```
php artisan steadfast:install
```

This will:

- Publish the configuration file
- Run the database migrations
- Guide you through the setup process

Configuration
-------------

[](#configuration)

Add your SteadFast API credentials to your `.env` file:

```
# Required
STEADFAST_API_KEY=your_api_key_here
STEADFAST_SECRET_KEY=your_secret_key_here

# Optional - API Configuration
STEADFAST_BASE_URL=https://portal.packzy.com/api/v1
STEADFAST_TIMEOUT=30
STEADFAST_CONNECT_TIMEOUT=10

# Optional - Bulk Processing
STEADFAST_BULK_QUEUE=true
STEADFAST_BULK_CHUNK_SIZE=500
STEADFAST_QUEUE_NAME=default
STEADFAST_BULK_MAX_ATTEMPTS=3
STEADFAST_BULK_BACKOFF=60

# Optional - Retry Configuration
STEADFAST_RETRY_TIMES=3
STEADFAST_RETRY_SLEEP=1000

# Optional - Caching
STEADFAST_CACHE_ENABLED=false
STEADFAST_CACHE_TTL=300
STEADFAST_CACHE_PREFIX=steadfast

# Optional - Logging
STEADFAST_LOGGING=true
STEADFAST_LOG_REQUESTS=false
STEADFAST_LOG_RESPONSES=true
STEADFAST_CLEANUP_LOGS=true
STEADFAST_KEEP_LOGS_DAYS=30

# Optional - Validation
STEADFAST_STRICT_PHONE=true
STEADFAST_REQUIRE_EMAIL=false

# Optional - Fraud Checker (NEW)
STEADFAST_FRAUD_CHECKER_ENABLED=false
STEADFAST_FRAUD_CHECKER_EMAIL=your-merchant-email@example.com
STEADFAST_FRAUD_CHECKER_PASSWORD=your-merchant-password
STEADFAST_FRAUD_VERY_HIGH_THRESHOLD=75
STEADFAST_FRAUD_HIGH_THRESHOLD=50
STEADFAST_FRAUD_MEDIUM_THRESHOLD=25
STEADFAST_FRAUD_CACHE_ENABLED=true
STEADFAST_FRAUD_CACHE_TTL=3600
```

Test your configuration:

```
php artisan steadfast:test
```

Usage
-----

[](#usage)

### Basic Order Creation

[](#basic-order-creation)

```
use SabitAhmad\SteadFast\SteadFast;
use SabitAhmad\SteadFast\DTO\OrderRequest;

$steadfast = new SteadFast();

// Basic order
$order = new OrderRequest(
    invoice: 'INV-2025-001',
    recipient_name: 'John Doe',
    recipient_phone: '01712345678',
    recipient_address: 'House 1, Road 2, Dhanmondi, Dhaka-1209',
    cod_amount: 1500.00,
    note: 'Handle with care'
);

$response = $steadfast->createOrder($order);
echo "Order created! Tracking: " . $response->getTrackingCode();
```

### Advanced Order Creation

[](#advanced-order-creation)

```
// Order with all optional fields
$order = new OrderRequest(
    invoice: 'INV-2025-001',
    recipient_name: 'John Doe',
    recipient_phone: '01712345678',
    recipient_address: 'House 1, Road 2, Dhanmondi, Dhaka-1209',
    cod_amount: 1500.00,
    alternative_phone: '01987654321',        // NEW: Alternative phone
    recipient_email: 'john@example.com',     // NEW: Email address
    note: 'Deliver between 10 AM - 2 PM',
    item_description: 'Electronics items',   // NEW: Item description
    total_lot: 2,                           // NEW: Total items
    delivery_type: 0                        // NEW: 0=home, 1=point delivery
);

$response = $steadfast->createOrder($order);
```

### Using Facade

[](#using-facade)

```
use SabitAhmad\SteadFast\Facades\SteadFast;

// Check balance
$balance = SteadFast::getBalance();
echo $balance->getFormattedBalance(); // "1,500.00 BDT"

// Create order
$response = SteadFast::createOrder($order);
```

### Bulk Order Processing

[](#bulk-order-processing)

```
// Create multiple orders
$orders = [
    new OrderRequest('INV-001', 'John Doe', '01712345678', 'Address 1', 1000),
    new OrderRequest('INV-002', 'Jane Smith', '01787654321', 'Address 2', 1500),
    OrderRequest::fromArray([
        'invoice' => 'INV-003',
        'recipient_name' => 'Bob Wilson',
        'recipient_phone' => '01611111111',
        'recipient_address' => 'Address 3',
        'cod_amount' => 2000,
        'delivery_type' => 1, // Point delivery
    ]),
];

// Process in background queue (recommended for large batches)
$response = $steadfast->bulkCreate($orders, true);
echo "Queued {$response->order_count} orders for processing";

// Process immediately (for small batches)
$response = $steadfast->bulkCreate($orders, false);
echo "Success rate: {$response->getSuccessRate()}%";
echo "Successful orders: {$response->success_count}";
echo "Failed orders: {$response->error_count}";
```

### Order Status Tracking

[](#order-status-tracking)

```
// Multiple ways to track orders
$status = $steadfast->checkStatusByTrackingCode('ABC123XYZ');
$status = $steadfast->checkStatusByInvoice('INV-001');
$status = $steadfast->checkStatusByConsignmentId(12345);

// Rich status information
echo "Status: " . $status->delivery_status;
echo "Description: " . $status->getStatusDescription();

// Status checking methods
if ($status->isDelivered()) {
    echo "Order delivered successfully!";
} elseif ($status->isCancelled()) {
    echo "Order was cancelled";
} elseif ($status->isPending()) {
    echo "Order is still being processed";
} elseif ($status->isOnHold()) {
    echo "Order is on hold";
}
```

### Return Requests (NEW Feature)

[](#return-requests-new-feature)

```
use SabitAhmad\SteadFast\DTO\ReturnRequest;

// Create return request by invoice
$returnRequest = ReturnRequest::byInvoice('INV-001', 'Customer requested return');
$response = $steadfast->createReturnRequest($returnRequest);

// Create return request by consignment ID
$returnRequest = ReturnRequest::byConsignmentId(12345, 'Damaged item');
$response = $steadfast->createReturnRequest($returnRequest);

// Create return request by tracking code
$returnRequest = ReturnRequest::byTrackingCode('ABC123', 'Wrong item delivered');
$response = $steadfast->createReturnRequest($returnRequest);

// Get single return request
$returnRequest = $steadfast->getReturnRequest(123);
echo "Status: " . $returnRequest->getStatusDescription();

// Check return status
if ($returnRequest->isPending()) {
    echo "Return request is pending approval";
} elseif ($returnRequest->isCompleted()) {
    echo "Return has been completed";
}

// Get all return requests
$returnRequests = $steadfast->getReturnRequests();
foreach ($returnRequests as $request) {
    echo "Return ID: {$request->id}, Status: {$request->status}";
}
```

### Account Balance

[](#account-balance)

```
$balance = $steadfast->getBalance();

echo "Current Balance: " . $balance->getFormattedBalance();
echo "Raw Amount: " . $balance->current_balance;

if ($balance->isSuccessful()) {
    echo "Balance retrieved successfully";
}
```

### Fraud Checker (NEW Feature)

[](#fraud-checker-new-feature)

Check customer reliability by analyzing their order history. This feature uses web scraping to access the Steadfast merchant panel and retrieve fraud statistics.

#### Configuration

[](#configuration-1)

First, enable and configure fraud checking in your `.env`:

```
# Enable fraud checker
STEADFAST_FRAUD_CHECKER_ENABLED=true
STEADFAST_FRAUD_CHECKER_EMAIL=your-merchant-email@example.com
STEADFAST_FRAUD_CHECKER_PASSWORD=your-merchant-password

# Optional: Configure risk thresholds (percentages)
STEADFAST_FRAUD_VERY_HIGH_THRESHOLD=75
STEADFAST_FRAUD_HIGH_THRESHOLD=50
STEADFAST_FRAUD_MEDIUM_THRESHOLD=25

# Optional: Enable caching for fraud checks
STEADFAST_FRAUD_CACHE_ENABLED=true
STEADFAST_FRAUD_CACHE_TTL=3600
```

#### Basic Usage

[](#basic-usage)

```
use SabitAhmad\SteadFast\SteadFast;
use SabitAhmad\SteadFast\Exceptions\SteadfastException;

$steadfast = new SteadFast();

try {
    // Check fraud status by phone number
    $fraudCheck = $steadfast->checkFraud('01712345678');

    // Get order statistics
    echo "Successful Orders: " . $fraudCheck->success;
    echo "Cancelled Orders: " . $fraudCheck->cancel;
    echo "Total Orders: " . $fraudCheck->total;

    // Get calculated rates
    echo "Success Rate: " . $fraudCheck->getSuccessRate() . "%";
    echo "Cancel Rate: " . $fraudCheck->getCancelRate() . "%";

    // Get risk assessment
    echo "Risk Level: " . $fraudCheck->getRiskLevel();        // 'none', 'low', 'medium', 'high', 'very_high'
    echo "Risk Description: " . $fraudCheck->getRiskDescription();

} catch (SteadfastException $e) {
    echo "Error: " . $e->getMessage();
}
```

#### Advanced Usage

[](#advanced-usage)

```
// Check if customer is risky (default threshold: 50% cancellation rate)
if ($fraudCheck->isRisky()) {
    echo "High-risk customer detected!";
    // Require prepayment or decline order
}

// Use custom threshold
if ($fraudCheck->isRisky(threshold: 30)) {
    echo "Customer exceeds 30% cancellation rate";
}

// Make decisions based on risk level
match ($fraudCheck->getRiskLevel()) {
    'very_high' => $this->declineOrder($order),
    'high' => $this->requirePrepayment($order),
    'medium' => $this->assignToExperiencedCourier($order),
    'low' => $this->processNormally($order),
    'none' => $this->processWithPriority($order),
};

// Check if fraud check was successful
if ($fraudCheck->isSuccessful()) {
    echo "Fraud check completed successfully";
} else {
    echo "Error: " . $fraudCheck->error;
}
```

#### Real-World Example

[](#real-world-example)

```
public function validateCustomerBeforeOrder(string $phoneNumber, float $orderAmount)
{
    try {
        $fraudCheck = $this->steadfast->checkFraud($phoneNumber);

        // New customer (no order history)
        if ($fraudCheck->total === 0) {
            if ($orderAmount > 5000) {
                return [
                    'approved' => false,
                    'reason' => 'New customer with high-value order. Prepayment required.',
                    'require_prepayment' => true,
                ];
            }
            return ['approved' => true, 'note' => 'New customer'];
        }

        // Experienced customer with good track record
        if ($fraudCheck->getSuccessRate() >= 80) {
            return [
                'approved' => true,
                'note' => 'Trusted customer',
                'priority_processing' => true,
            ];
        }

        // High-risk customer
        if ($fraudCheck->isRisky(threshold: 40)) {
            return [
                'approved' => false,
                'reason' => "High cancellation rate: {$fraudCheck->getCancelRate()}%",
                'customer_stats' => [
                    'success' => $fraudCheck->success,
                    'cancel' => $fraudCheck->cancel,
                    'total' => $fraudCheck->total,
                ],
            ];
        }

        // Medium-risk customer
        return [
            'approved' => true,
            'note' => 'Medium risk - monitor closely',
            'send_confirmation' => true,
        ];

    } catch (SteadfastException $e) {
        // Log error and continue without fraud check
        Log::warning('Fraud check failed', [
            'phone' => $phoneNumber,
            'error' => $e->getMessage(),
        ]);

        return ['approved' => true, 'note' => 'Fraud check unavailable'];
    }
}
```

#### Understanding Risk Levels

[](#understanding-risk-levels)

The fraud checker automatically categorizes customers into risk levels:

Risk LevelCancel RateDescriptionRecommendation**Very High**≥ 75%Customer cancels most ordersConsider declining**High**50-74%High cancellation historyRequire prepayment**Medium**25-49%Moderate riskMonitor closely**Low**1-24%Occasional cancellationsSafe to proceed**None**0%New or perfect recordTrustworthy#### Phone Number Formats

[](#phone-number-formats)

The fraud checker automatically normalizes phone numbers. Accepted formats:

```
// Valid formats (automatically normalized):
$fraudCheck = $steadfast->checkFraud('01712345678');    // Standard format (preferred)
$fraudCheck = $steadfast->checkFraud('8801712345678');  // With country code 88
$fraudCheck = $steadfast->checkFraud('+8801712345678'); // International format
$fraudCheck = $steadfast->checkFraud('017 1234 5678');  // With spaces
$fraudCheck = $steadfast->checkFraud('017-1234-5678');  // With dashes

// Invalid formats (will throw exception):
// '1234567890'        - Too short
// '02171234567'       - Invalid prefix (must start with 01)
// '01212345678'       - Second digit must be 3-9
// '011234567890'      - Too long
```

**Valid Pattern:** Must be 11 digits starting with `01` followed by `3-9`, then 8 more digits.

**Examples of valid phone numbers:**

- `01712345678` (Grameenphone)
- `01812345678` (Robi)
- `01912345678` (Banglalink)
- `01612345678` (Airtel)
- `01512345678` (Teletalk)

#### Error Handling

[](#error-handling)

```
use SabitAhmad\SteadFast\Exceptions\SteadfastException;

try {
    $fraudCheck = $steadfast->checkFraud($phoneNumber);
} catch (SteadfastException $e) {
    match ($e->getCode()) {
        500 => throw new Exception('Fraud checker not enabled or configured'),
        422 => throw new Exception('Invalid phone number format. Must be 01XXXXXXXXX (e.g., 01712345678)'),
        default => throw new Exception('Fraud check failed: ' . $e->getMessage())
    };
}
```

#### Performance Considerations

[](#performance-considerations)

1. **Caching**: Enable fraud check caching to avoid repeated web scraping:

    ```
    STEADFAST_FRAUD_CACHE_ENABLED=true
    STEADFAST_FRAUD_CACHE_TTL=3600  # Cache for 1 hour
    ```
2. **Async Processing**: For high-traffic applications, consider checking fraud status asynchronously:

    ```
    dispatch(function () use ($phoneNumber) {
        $fraudCheck = app(SteadFast::class)->checkFraud($phoneNumber);
        // Store results in database
        FraudCheck::updateOrCreate(
            ['phone_number' => $phoneNumber],
            $fraudCheck->toArray()
        );
    });
    ```
3. **Rate Limiting**: The fraud checker performs web scraping which is slower than API calls. Use wisely and implement caching.

Advanced Features
-----------------

[](#advanced-features)

### Event System (NEW)

[](#event-system-new)

Listen to bulk order events for monitoring and notifications:

```
use SabitAhmad\SteadFast\Events\{BulkOrderStarted, BulkOrderCompleted, BulkOrderFailed};

// In your EventServiceProvider
Event::listen(BulkOrderStarted::class, function ($event) {
    Log::info("Bulk order processing started", [
        'order_count' => count($event->orders),
        'unique_id' => $event->uniqueId
    ]);
});

Event::listen(BulkOrderCompleted::class, function ($event) {
    // Send notification, update dashboard, etc.
    Log::info("Bulk order completed", [
        'success_count' => $event->response->success_count,
        'error_count' => $event->response->error_count,
        'success_rate' => $event->response->getSuccessRate()
    ]);
});

Event::listen(BulkOrderFailed::class, function ($event) {
    // Alert administrators, retry logic, etc.
    Log::error("Bulk order failed", [
        'error' => $event->exception->getMessage(),
        'order_count' => count($event->orders)
    ]);
});
```

### Caching (NEW)

[](#caching-new)

Enable intelligent caching for better performance:

```
// Enable caching in .env
STEADFAST_CACHE_ENABLED=true
STEADFAST_CACHE_TTL=300  // 5 minutes

// Clear cache when needed
$steadfast->clearCache(); // Clear all cache
$steadfast->clearCache('balance'); // Clear specific cache
```

### Advanced Error Handling

[](#advanced-error-handling)

```
use SabitAhmad\SteadFast\Exceptions\SteadfastException;

try {
    $response = $steadfast->createOrder($order);
} catch (SteadfastException $e) {
    match ($e->getCode()) {
        401 => $this->handleAuthenticationError($e), // Invalid credentials
        422 => $this->handleValidationError($e),     // Validation failed
        429 => $this->handleRateLimit($e),           // Rate limit exceeded
        503 => $this->handleServiceDown($e),         // Service unavailable
        default => $this->handleGenericError($e)
    };
}

private function handleValidationError(SteadfastException $e)
{
    $errors = $e->getContext()['validation_errors'] ?? [];
    foreach ($errors as $field => $messages) {
        echo "Field $field: " . implode(', ', $messages);
    }
}

private function handleRateLimit(SteadfastException $e)
{
    $retryAfter = $e->getContext()['retry_after'] ?? 60;
    echo "Rate limit exceeded. Retry after $retryAfter seconds";
}
```

### Queue Configuration

[](#queue-configuration)

For better queue management, configure dedicated queues:

```
// config/queue.php
'connections' => [
    'steadfast' => [
        'driver' => 'database',
        'table' => 'jobs',
        'queue' => 'steadfast-orders',
        'retry_after' => 300,
        'block_for' => 0,
    ],
],

// In your .env
STEADFAST_QUEUE_CONNECTION=steadfast
STEADFAST_QUEUE_NAME=high-priority
```

Run dedicated workers:

```
php artisan queue:work steadfast --queue=high-priority,default
```

Artisan Commands
----------------

[](#artisan-commands)

### Test API Connection

[](#test-api-connection)

```
# Test your configuration
php artisan steadfast:test
```

This command will:

- Validate your API credentials
- Test API connectivity
- Check your current balance
- Verify configuration settings

### View Statistics

[](#view-statistics)

```
# View last 24 hours (default)
php artisan steadfast:stats

# View last 7 days
php artisan steadfast:stats --hours=168

# View last 30 days
php artisan steadfast:stats --hours=720
```

Sample output:

```
Steadfast API Statistics (Last 24 hours)
==================================================
Metric                | Value
---------------------|----------
Total Requests       | 1,245
Successful           | 1,180
Errors              | 65
Success Rate        | 94.78%
Bulk Operations     | 12
Average Duration    | 245.67ms

Top Endpoints:
Endpoint                    | Requests
---------------------------|----------
/create_order              | 890
/create_order/bulk-order   | 234
/status_by_invoice         | 121

```

### Clean Up Old Logs

[](#clean-up-old-logs)

```
# Interactive cleanup
php artisan steadfast:cleanup

# Force cleanup without confirmation
php artisan steadfast:cleanup --force
```

Monitoring &amp; Logging
------------------------

[](#monitoring--logging)

### Database Statistics

[](#database-statistics)

Query the logs table for insights:

```
use SabitAhmad\SteadFast\Models\SteadfastLog;

// Get recent errors
$errors = SteadfastLog::errors()->recent(24)->get();

// Get successful operations
$successful = SteadfastLog::successful()->recent(24)->get();

// Get bulk operations
$bulkOps = SteadfastLog::bulkOperations()->get();

// Get statistics
$stats = SteadfastLog::getStats(24); // Last 24 hours
```

### Log Scopes

[](#log-scopes)

The `SteadfastLog` model includes useful query scopes:

```
// Filter by type
SteadfastLog::ofType('single_order')->get();

// Filter by status code
SteadfastLog::withStatusCode(200)->get();

// Get only errors
SteadfastLog::errors()->get();

// Get only successful requests
SteadfastLog::successful()->get();

// Get recent logs
SteadfastLog::recent(48)->get(); // Last 48 hours

// Get bulk operations
SteadfastLog::bulkOperations()->get();
```

API Endpoints Coverage
----------------------

[](#api-endpoints-coverage)

EndpointMethodDescriptionStatusNew Features`/create_order`POSTCreate single orderYesEnhanced validation, all fields`/create_order/bulk-order`POSTCreate bulk ordersYesQueue support, events, chunking`/status_by_cid/{id}`GETCheck status by consignment IDYesRich status objects, caching`/status_by_invoice/{invoice}`GETCheck status by invoiceYesRich status objects, caching`/status_by_trackingcode/{code}`GETCheck status by tracking codeYesRich status objects, caching`/get_balance`GETGet account balanceYesFormatted output, caching`/create_return_request`POSTCreate return requestYes**NEW** - Full implementation`/get_return_request/{id}`GETGet single return requestYes**NEW** - Full implementation`/get_return_requests`GETGet all return requestsYes**NEW** - Full implementationThe package includes comprehensive validation:

```
// Order validation rules
'invoice' => 'required|string|max:255|regex:/^[a-zA-Z0-9_-]+$/',
'recipient_name' => 'required|string|max:100',
'recipient_phone' => 'required|string|regex:/^01[0-9]{9}$/',
'alternative_phone' => 'nullable|string|regex:/^01[0-9]{9}$/',
'recipient_email' => 'nullable|email|max:255',
'recipient_address' => 'required|string|max:250',
'cod_amount' => 'required|numeric|min:0',
'note' => 'nullable|string|max:500',
'item_description' => 'nullable|string|max:500',
'total_lot' => 'nullable|integer|min:1',
'delivery_type' => 'nullable|integer|in:0,1',
```

Customize validation in config:

```
STEADFAST_STRICT_PHONE=true        # Enforce BD phone format
STEADFAST_REQUIRE_EMAIL=false      # Make email required
STEADFAST_MAX_INVOICE_LENGTH=255   # Max invoice length
STEADFAST_MAX_ADDRESS_LENGTH=250   # Max address length
STEADFAST_MAX_NAME_LENGTH=100      # Max name length
```

Security Features
-----------------

[](#security-features)

### Sensitive Data Protection

[](#sensitive-data-protection)

- API keys automatically filtered from logs
- Configurable request/response logging
- Secure credential handling

### Input Sanitization

[](#input-sanitization)

- Comprehensive input validation
- SQL injection prevention
- XSS protection in logged data

Performance Optimizations
-------------------------

[](#performance-optimizations)

### Bulk Processing

[](#bulk-processing)

- Chunked processing (configurable chunk size)
- Queue-based background processing
- Parallel processing support
- Memory-efficient handling

### Caching

[](#caching)

- Response caching for frequently accessed data
- Configurable TTL per endpoint
- Cache invalidation strategies
- Redis/Database cache support

### Connection Management

[](#connection-management)

- Persistent HTTP connections
- Configurable timeouts
- Retry logic with exponential backoff
- Connection pooling

Error Scenarios &amp; Handling
------------------------------

[](#error-scenarios--handling)

### Common Issues &amp; Solutions

[](#common-issues--solutions)

```
// Handle specific error scenarios
try {
    $response = $steadfast->createOrder($order);
} catch (SteadfastException $e) {
    if ($e->getCode() === 422) {
        // Validation errors
        $errors = $e->getContext()['validation_errors'];
        return response()->json(['errors' => $errors], 422);
    }

    if ($e->getCode() === 401) {
        // Invalid credentials - check API keys
        Log::error('Steadfast authentication failed', [
            'api_key' => substr(config('steadfast.api_key'), 0, 8) . '...'
        ]);
        return response()->json(['error' => 'API authentication failed'], 401);
    }

    if ($e->getCode() === 429) {
        // Rate limit - implement backoff strategy
        $retryAfter = $e->getContext()['retry_after'] ?? 60;
        return response()->json([
            'error' => 'Rate limit exceeded',
            'retry_after' => $retryAfter
        ], 429);
    }
}
```

Migration from v1.x
-------------------

[](#migration-from-v1x)

If upgrading from an older version:

1. **Update configuration:**

```
php artisan vendor:publish --tag="laravel-steadfast-config" --force
```

2. **Run new migrations:**

```
php artisan migrate
```

3. **Update your code:**

```
// Old way
$steadfast->bulkCreate($orders);

// New way (same method, but now returns rich response objects)
$response = $steadfast->bulkCreate($orders);
echo $response->getSuccessRate(); // New methods available
```

Testing
-------

[](#testing)

Run the package tests:

```
composer test
```

Test your integration:

```
php artisan steadfast:test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security
--------

[](#security)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Sabit Ahmad](https://github.com/sabitahmadumid) - Package author and maintainer
- [SteadFast Courier](https://steadfast.com.bd/) - API provider
- [Laravel Community](https://laravel.com/) - Framework and inspiration
- All contributors who help improve this package

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

Support
-------

[](#support)

### Getting Help

[](#getting-help)

1. **Documentation**: Read this README thoroughly
2. **Test Configuration**: Run `php artisan steadfast:test`
3. **Check Logs**: Query the `steadfast_logs` table for API issues
4. **View Statistics**: Run `php artisan steadfast:stats` for insights
5. **GitHub Issues**: [Open an issue](https://github.com/sabitahmadumid/laravel-steadfast/issues) for bugs or feature requests

### Troubleshooting

[](#troubleshooting)

**API Connection Issues:**

```
# Test your configuration
php artisan steadfast:test

# Check recent errors
php artisan steadfast:stats --hours=1
```

**Queue Processing Issues:**

```
# Make sure queue worker is running
php artisan queue:work

# Check failed jobs
php artisan queue:failed
```

**Common Configuration Issues:**

- Verify API credentials in `.env`
- Ensure database migrations are run
- Check queue configuration
- Verify PHP version (8.1+ required)

---

**Happy shipping with SteadFast!**

###  Health Score

38

—

LowBetter than 85% of packages

Maintenance75

Regular maintenance activity

Popularity10

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 58.3% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~120 days

Total

3

Last Release

163d ago

Major Versions

v1.0.0 → v2.0.02025-09-24

PHP version history (2 changes)v1.0.0PHP ^8.0

v2.0.0PHP ^8.1

### Community

Maintainers

![](https://www.gravatar.com/avatar/61b5e04c3c2f57034b9f4ca411ec4f4c4d4d7e63eb9780a0865d101f6cee135c?d=identicon)[sabitahmadumid](/maintainers/sabitahmadumid)

---

Top Contributors

[![sabitahmadumid](https://avatars.githubusercontent.com/u/185702986?v=4)](https://github.com/sabitahmadumid "sabitahmadumid (14 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (7 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (3 commits)")

---

Tags

laravelorder trackingsteadfast courierdelivery-apiSabitAhmadlaravel-steadfastcourier-apibulk-ordersreturn-requestsbangladesh-courier

###  Code Quality

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/sabitahmad-laravel-steadfast/health.svg)

```
[![Health](https://phpackages.com/badges/sabitahmad-laravel-steadfast/health.svg)](https://phpackages.com/packages/sabitahmad-laravel-steadfast)
```

###  Alternatives

[dedoc/scramble

Automatic generation of API documentation for Laravel applications.

2.0k7.8M57](/packages/dedoc-scramble)[scalar/laravel

Render your OpenAPI-based API reference

6183.9k2](/packages/scalar-laravel)[ryangjchandler/bearer

Minimalistic token-based authentication for Laravel API endpoints.

8129.8k](/packages/ryangjchandler-bearer)[combindma/laravel-facebook-pixel

Meta pixel integration for Laravel

4956.9k](/packages/combindma-laravel-facebook-pixel)[stechstudio/laravel-hubspot

A Laravel SDK for the HubSpot CRM Api

2971.0k](/packages/stechstudio-laravel-hubspot)[njoguamos/laravel-plausible

A laravel package for interacting with plausible analytics api.

208.8k](/packages/njoguamos-laravel-plausible)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
