Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

README

        

## Blog Admin Panel

Note: App is still under heavy development

Blog Admin Panel Image Light
Blog Admin Panel Image Dark

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
```