PHPackages                             starfolksoftware/tender - 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. [Database &amp; ORM](/categories/database)
4. /
5. starfolksoftware/tender

ActiveLibrary[Database &amp; ORM](/categories/database)

starfolksoftware/tender
=======================

A simple and straightforward package to add currencies to models in your Laravel applications

v1.0.1(2y ago)060[3 PRs](https://github.com/starfolksoftware/tender/pulls)MITPHPPHP ^8.1

Since May 6Pushed 2y ago1 watchersCompare

[ Source](https://github.com/starfolksoftware/tender)[ Packagist](https://packagist.org/packages/starfolksoftware/tender)[ Docs](https://github.com/starfolksoftware/tender)[ RSS](/packages/starfolksoftware-tender/feed)WikiDiscussions v1.x Synced 1mo ago

READMEChangelog (2)Dependencies (12)Versions (6)Used By (0)

Tender
======

[](#tender)

A simple and straighforward package to attach currencies to models in your Laravel applications.

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

[](#installation)

You can install the package via composer:

```
composer require starfolksoftware/tender
php artisan tender:install
php artisan migrate
```

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

[](#configuration)

This is the contents of the published config file:

```
return [
    'middleware' => ['web'],

    'redirects' => [
        'store' => null,
        'update' => null,
        'destroy' => '/',
    ],
];
```

Optionally, you can publish the views using

```
php artisan vendor:publish --tag="tender-views"
```

Usage
-----

[](#usage)

```
