PHP code example of ttbooking / fiscal-registrar
1. Go to this page and download the library: Download ttbooking/fiscal-registrar library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
ttbooking / fiscal-registrar example snippets
namespace App\Models;
use TTBooking\FiscalRegistrar\Models\Receipt as BaseReceipt;
class Receipt extends BaseReceipt
{
protected $table = 'custom_receipts';
}
sh
# Publish configuration
php artisan vendor:publish --provider=TTBooking\FiscalRegistrar\FiscalRegistrarServiceProvider --tag=config
# Publish migration
php artisan vendor:publish --provider=TTBooking\FiscalRegistrar\FiscalRegistrarServiceProvider --tag=migrations
# Publish everything package-related
php artisan vendor:publish --provider=TTBooking\FiscalRegistrar\FiscalRegistrarServiceProvider