Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vojislavd/blog
Simple admin panel to manage blog created with Filament
https://github.com/vojislavd/blog
alpinejs filament laravel livewire tailwindcss
Last synced: 8 days ago
JSON representation
Simple admin panel to manage blog created with Filament
- Host: GitHub
- URL: https://github.com/vojislavd/blog
- Owner: VojislavD
- Created: 2022-02-19T08:56:26.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-06-28T10:54:33.000Z (5 months ago)
- Last Synced: 2024-06-28T12:11:23.544Z (5 months ago)
- Topics: alpinejs, filament, laravel, livewire, tailwindcss
- Language: JavaScript
- Homepage:
- Size: 929 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Blog Admin Panel
Note: App is still under heavy development
Simple blog admin panel created with Filament.
## Installation
Clone the repository, navigate to project directory and install dependencies
```bash
composer install
```
Create a file for environment variables by coping `.env.example`
```bash
cp .env.example .env
```Create application key
```bash
php artisan key:generate
```Setup database credentials in `.env` file and run migrations
```bash
php artisan migrate
```## Usage
Create new user with command
```bash
php artisan make:filament-user
```To be able to upload images you need to setup S3 disk, or you can use some of the alternatives for local development like Minio.
## Testing
```bash
./vendor/bin/pest
```