Commit 84ad08fe by Angel MAS

readme updated

parent dcc8f539
# Package blog OneStartup # Package blog OneStartup
**onestartup/blog** is a module blog for websites **onestartup/product** is a module product for websites
# Installation # Installation
- Run this in the terminal - Run this in the terminal
```php ```php
composer require onestartup/blog composer require onestartup/product
``` ```
- after add the ServiceProvider to the providers array in config/app.php - after add the ServiceProvider to the providers array in config/app.php
```php ```php
Onestartup\Blog\BlogServiceProvider::class, Onestartup\Product\ProductServiceProvider::class,
``` ```
- Run migration - Run migration
...@@ -22,19 +22,10 @@ Onestartup\Blog\BlogServiceProvider::class, ...@@ -22,19 +22,10 @@ Onestartup\Blog\BlogServiceProvider::class,
php artisan migrate 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 - run command for publish views
```php ```php
php artisan vendor:publish --provider="Onestartup\Blog\BlogServiceProvider" php artisan vendor:publish --provider="Onestartup\Product\ProductServiceProvider"
``` ```
- run serv - run serv
...@@ -46,11 +37,11 @@ php artisan serve ...@@ -46,11 +37,11 @@ php artisan serve
- test in this route how admin user - test in this route how admin user
```php ```php
http://localhost:8000/admin/blog/entry http://localhost:8000/admin/product/product
``` ```
- test in this route - test in this route
```php ```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