PHP code example of tomatophp / filament-withdrawals

1. Go to this page and download the library: Download tomatophp/filament-withdrawals 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/ */

    

tomatophp / filament-withdrawals example snippets


->plugin(\TomatoPHP\FilamentWithdrawals\FilamentWithdrawalsPlugin::make())

use TomatoPHP\FilamentWithdrawals\Services\FilamentWithdrawalFormFields;
use TomatoPHP\FilamentWithdrawals\Services\Contracts\WithdrawalFormFieldType;

FilamentWithdrawalFormFields::register([
    WithdrawalFormFieldType::make('code')
        ->className(CodeEditor::class)
        ->color('warning')
        ->icon('heroicon-s-code-bracket-square')
        ->label('Code Editor'),
]);

use TomatoPHP\FilamentWithdrawals\Services\FilamentWithdrawalFormBuilder;

FilamentWithdrawalFormBuilder::make(1)->build()

use TomatoPHP\FilamentWithdrawals\Services\FilamentWithdrawalFormBuilder;

FilamentWithdrawalFormBuilder::make(1)->send($data)
bash
php artisan filament-withdrawals:install
bash
php artisan vendor:publish --tag="filament-withdrawals-lang"
bash
php artisan vendor:publish --tag="filament-withdrawals-migrations"