ianriizky / laravel-blog-starter
A starter kit to build blog application using Laravel Framework
dev-develop
2021-11-16 15:45 UTC
Requires
- php: ^7.4|^8.0
- laravel/framework: ^8.0
- spatie/laravel-medialibrary: ^9.0.0
- spatie/laravel-sluggable: ^2.6
- spatie/laravel-translatable: ^4.6
Requires (Dev)
- fakerphp/faker: ^1.9.1
- orchestra/testbench: ^6.23
- pestphp/pest: ^1.20
- pestphp/pest-plugin-laravel: ^1.1
This package is auto-updated.
Last update: 2024-12-16 22:41:02 UTC
README
laravel-blog-starter is a starter kit to build blog application using Laravel Framework.
Requirement
- Laravel Framework ^8.0
- PHP ^7.4|^8.0
- MySQL ^5.7
Instalation
You can install the package via composer:
composer require ianriizky/laravel-blog-starter
After installation process finished, you are suggested to publish the configuration and public file:
php artisan vendor:publish --provider="Ianrizky\LaravelBlogStarter\App\Providers\ServiceProvider" --tag="config" php artisan vendor:publish --provider="Ianrizky\LaravelBlogStarter\App\Providers\ServiceProvider" --tag="public"
Packagist: https://packagist.org/packages/ianriizky/laravel-blog-starter
Preparing The Database
You need to publish the migration to create the required table:
php artisan vendor:publish --provider="Ianrizky\LaravelBlogStarter\App\Providers\ServiceProvider" --tag="migrations" php artisan vendor:publish --provider="Spatie\MediaLibrary\MediaLibraryServiceProvider" --tag="migrations"
After that, you need to run migrations.
php artisan migrate
Testing
./vendor/bin/pest
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
License
The MIT License (MIT). Please see License File for more information.