Commit 84ad08fe by Angel MAS

readme updated

parent dcc8f539
# Package blog OneStartup
**onestartup/blog** is a module blog for websites
**onestartup/product** is a module product for websites
# Installation
- Run this in the terminal
```php
composer require onestartup/blog
composer require onestartup/product
```
- after add the ServiceProvider to the providers array in config/app.php
```php
Onestartup\Blog\BlogServiceProvider::class,
Onestartup\Product\ProductServiceProvider::class,
```
- Run migration
......@@ -22,19 +22,10 @@ Onestartup\Blog\BlogServiceProvider::class,
php artisan migrate
```
- add next lines to app/User.php
```php
public function entries()
{
return $this->hasMany('Onestartup\Blog\Model\Entry', 'user_id');
}
```
- run command for publish views
```php
php artisan vendor:publish --provider="Onestartup\Blog\BlogServiceProvider"
php artisan vendor:publish --provider="Onestartup\Product\ProductServiceProvider"
```
- run serv
......@@ -46,11 +37,11 @@ php artisan serve
- test in this route how admin user
```php
http://localhost:8000/admin/blog/entry
http://localhost:8000/admin/product/product
```
- test in this route
```php
http://localhost:8000/blog
http://localhost:8000/products
```
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment