Skip to content

Commit

Permalink
first commit 🔥
Browse files Browse the repository at this point in the history
  • Loading branch information
3x1io committed Aug 2, 2024
1 parent df60404 commit 116b3bf
Show file tree
Hide file tree
Showing 12 changed files with 36 additions and 38 deletions.
2 changes: 1 addition & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github: [TomatoPHP]
github: [3x1io]
30 changes: 15 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
![Screenshot](https://raw.githubusercontent.com/tomatophp/filament-withdrawals/master/arts/megoxv-tomato-withdrawals.jpg)

# Filament Withdrawals

[![Latest Stable Version](https://poser.pugx.org/TomatoPHP/filament-withdrawals/version.svg)](https://packagist.org/packages/TomatoPHP/filament-withdrawals)
[![License](https://poser.pugx.org/TomatoPHP/filament-withdrawals/license.svg)](https://packagist.org/packages/TomatoPHP/filament-withdrawals)
[![Downloads](https://poser.pugx.org/TomatoPHP/filament-withdrawals/d/total.svg)](https://packagist.org/packages/TomatoPHP/filament-withdrawals)
[![Latest Stable Version](https://poser.pugx.org/tomatophp/filament-withdrawals/version.svg)](https://packagist.org/packages/tomatophp/filament-withdrawals)
[![License](https://poser.pugx.org/tomatophp/filament-withdrawals/license.svg)](https://packagist.org/packages/tomatophp/filament-withdrawals)
[![Downloads](https://poser.pugx.org/tomatophp/filament-withdrawals/d/total.svg)](https://packagist.org/packages/tomatophp/filament-withdrawals)

Manage your withdrawals in Filament

Expand All @@ -11,6 +13,7 @@ Manage your withdrawals in Filament
```bash
composer require tomatophp/filament-withdrawals
```

after install your package please run this command

```bash
Expand All @@ -25,18 +28,6 @@ finally register the plugin on `/app/Providers/Filament/AdminPanelProvider.php`

## Publish Assets

you can publish config file by use this command

```bash
php artisan vendor:publish --tag="filament-withdrawals-config"
```

you can publish views file by use this command

```bash
php artisan vendor:publish --tag="filament-withdrawals-views"
```

you can publish languages file by use this command

```bash
Expand All @@ -49,6 +40,15 @@ you can publish migrations file by use this command
php artisan vendor:publish --tag="filament-withdrawals-migrations"
```


## Support

you can join our discord server to get support [TomatoPHP](https://discord.gg/vKV9U7gD3c)

## Docs

you can check docs of this package on [Docs](https://docs.tomatophp.com/filament/filament-withdrawals)

## Changelog

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
Expand Down
Binary file added arts/megoxv-tomato-withdrawals.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 6 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
{
"name": "tomatophp/filament-withdrawals",
"type": "library",
"description": "Manage your withdrawals in Filament",
"description": "Manage your wallet withdrawals in FilamentPHP",
"keywords": [
"php",
"laravel",
"wallet",
"wwithdrawals"
"withdrawals",
"filament",
"filament-plugin",
"tomatophp"
],
"license": "MIT",
"autoload": {
Expand Down Expand Up @@ -35,7 +38,7 @@
"require": {
"php": "^8.1|^8.2",
"filament/filament": "^3.0.0",
"tomatophp/filament-wallet": "^v1.0.3",
"tomatophp/filament-wallet": "^v1.0",
"tomatophp/console-helpers": "^1.1"
}
}
14 changes: 14 additions & 0 deletions megoxv-tomato-withdrawals.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
name: Wallets Withdrawals
slug: megoxv-tomato-withdrawals
author_slug: megoxv
categories: [developer-tool]
description: Manage your wallet withdrawals in FilamentPHP
discord_url:
docs_url: https://raw.githubusercontent.com/tomatophp/filament-withdrawals/master/README.md
github_repository: tomatophp/filament-withdrawals
has_dark_theme: true
has_translations: true
versions: [3]
publish_date: 2024-08-02
---
Empty file removed resources/js/.gitkeep
Empty file.
Empty file removed resources/views/.gitkeep
Empty file.
3 changes: 0 additions & 3 deletions routes/web.php

This file was deleted.

16 changes: 0 additions & 16 deletions src/FilamentWithdrawalsServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,6 @@ public function register(): void
\TomatoPHP\FilamentWithdrawals\Console\FilamentWithdrawalsInstall::class,
]);

//Register Config file
$this->mergeConfigFrom(__DIR__ . '/../config/filament-withdrawals.php', 'filament-withdrawals');

//Publish Config
$this->publishes([
__DIR__ . '/../config/filament-withdrawals.php' => config_path('filament-withdrawals.php'),
], 'filament-withdrawals-config');

//Register Migrations
$this->loadMigrationsFrom(__DIR__ . '/../database/migrations');
Expand All @@ -45,13 +38,6 @@ public function register(): void
$this->publishes([
__DIR__ . '/../database/migrations' => database_path('migrations'),
], 'filament-withdrawals-migrations');
//Register views
$this->loadViewsFrom(__DIR__ . '/../resources/views', 'filament-withdrawals');

//Publish Views
$this->publishes([
__DIR__ . '/../resources/views' => resource_path('views/vendor/filament-withdrawals'),
], 'filament-withdrawals-views');

//Register Langs
$this->loadTranslationsFrom(__DIR__ . '/../resources/lang', 'filament-withdrawals');
Expand All @@ -61,8 +47,6 @@ public function register(): void
__DIR__ . '/../resources/lang' => base_path('lang/vendor/filament-withdrawals'),
], 'filament-withdrawals-lang');

//Register Routes
$this->loadRoutesFrom(__DIR__ . '/../routes/web.php');
}

public function boot(): void
Expand Down
Empty file removed src/Http/Controllers/.gitkeep
Empty file.
Empty file removed src/Http/Middleware/.gitkeep
Empty file.
Empty file removed src/Http/Requests/.gitkeep
Empty file.

0 comments on commit 116b3bf

Please sign in to comment.