Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/alexchasx/laravel-orchid-blog
- Owner: alexchasx
- Created: 2022-04-28T14:21:24.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-10T13:03:54.000Z (2 months ago)
- Last Synced: 2024-11-10T14:18:07.161Z (2 months ago)
- Topics: admin-panel, blog, eloquent, laravel, orchid, php, php8
- Language: PHP
- Homepage: https://alexchas-dev.ru/
- Size: 12.5 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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-blogcomposer install
npm install
npm run dev
php artisan storage:linkcp .env.example .env
# ======== For Docker (Sail)
alias sail='[ -f sail ] && sh sail || sh vendor/bin/sail'
sail up -dsail 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
```