https://github.com/thecodeholic/laravel-10-blog
Laravel 10 blog starter kit
https://github.com/thecodeholic/laravel-10-blog
Last synced: 12 days ago
JSON representation
Laravel 10 blog starter kit
- Host: GitHub
- URL: https://github.com/thecodeholic/laravel-10-blog
- Owner: thecodeholic
- Created: 2023-03-01T19:18:25.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-08T13:41:57.000Z (about 2 years ago)
- Last Synced: 2025-03-21T22:41:23.396Z (3 months ago)
- Language: PHP
- Size: 249 KB
- Stars: 120
- Watchers: 7
- Forks: 55
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Laravel 10 Blog Starter Kit
This is Laravel 10 blog starter kit project with [Filament PHP](https://filamentphp.com/) admin panel. The project is created during [YouTube Tutorial](https://youtu.be/iVThaG_sAt0).## Installation with docker
#### 1. Clone the project
```bash
git clone https://github.com/thecodeholic/laravel-10-blog.git
```#### 2. Run `composer install`
Navigate into project folder using terminal and run```bash
docker run --rm \
-u "$(id -u):$(id -g)" \
-v "$(pwd):/var/www/html" \
-w /var/www/html \
laravelsail/php82-composer:latest \
composer install --ignore-platform-reqs
```#### 3. Copy `.env.example` into `.env`
```bash
cp .env.example .env
```#### 4. Start the project in detached mode
```bash
./vendor/bin/sail up -d
```
From now on whenever you want to run artisan command you should do this from the container.
Access to the docker container
```bash
./vendor/bin/sail bash
```#### 5. Set encryption key
```bash
php artisan key:generate --ansi
```#### 6. Run migrations
```bash
php artisan migrate
```#### 7. Add Filament Admin user
```bash
php artisan make:filament-user
```## Demo
> Coming soon...##