Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cannonb4ll/filament-modal-textarea-bug-filapanel
Powered by Filapanel.com
https://github.com/cannonb4ll/filament-modal-textarea-bug-filapanel
Last synced: 29 days ago
JSON representation
Powered by Filapanel.com
- Host: GitHub
- URL: https://github.com/cannonb4ll/filament-modal-textarea-bug-filapanel
- Owner: Cannonb4ll
- Created: 2024-07-18T05:42:26.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-07-18T05:48:45.000Z (5 months ago)
- Last Synced: 2024-11-27T00:54:13.078Z (about 1 month ago)
- Language: PHP
- Size: 652 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Welcome to Filapanel
*Brought to you by [Ploi - a server management tool](https://ploi.io/?ref=filapanel-github)*
[https://filapanel.com](https://filapanel.com?ref=filapanel-github)
Generated on: 2024-07-18 05:42:16 (UTC)
Filapanel is your dynamic, user-friendly tool for accelerating Laravel application development. Built on the Filament framework, it provides a seamless approach for creating, configuring, and managing resources and models.
## Installed packages
No packages were selected to be installed.
## Further installation
Now that you've got your project, it's time to finish up installation. Please make sure to run the following commands
either in your local project or in your deployment tool.### Run composer install
```
composer install
```### Create your `.env`
```
cp .env.example .env
```Now create a new database and enter the credentials inside your environment file.
### Set your app key
```
php artisan key:generate
```### Upgrade Filament
```
php artisan filament:upgrade
```### Run migrations
```
php artisan migrate:fresh
```### Link storage
```
php artisan storage:link
```### All as one command
```
composer install &&
cp .env.example .env &&
php artisan key:generate &&
php artisan filament:upgrade &&
php artisan migrate:fresh &&
php artisan storage:link
```