Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/alexchasx/laravel-orchid-blog

Blog on Laravel 9.1 with the Orchid admin panel.
https://github.com/alexchasx/laravel-orchid-blog

admin-panel blog eloquent laravel orchid php php8

Last synced: 2 months ago
JSON representation

Blog on Laravel 9.1 with the Orchid admin panel.

Awesome Lists containing this project

README

        

Blog on Laravel with the Orchid admin panel (https://orchid.software/).
Working site: [https://alexchas-dev.ru/](https://alexchas-dev.ru/)

---
# Installing the project on the development environment

```bash
mkdir projects && cd projects
git clone [email protected]:alexchasx/laravel-orchid-blog.git
cd laravel-orchid-blog

composer install
npm install
npm run dev
php artisan storage:link

cp .env.example .env

# ======== For Docker (Sail)

alias sail='[ -f sail ] && sh sail || sh vendor/bin/sail'
sail up -d

sail artisan migrate --seed

# Create a user with the maximum (at the time of creation) rights:
sail artisan orchid:admin admin [email protected] 123456

# ======== Without Docker

php artisan migrate --seed

# Create a user with the maximum (at the time of creation) rights:
php artisan orchid:admin admin [email protected] 123456

# check in the browser: http://localhost
```