Commit 57d42d25 by Angel MAS

readme modified

parent cfc8a153
...@@ -5,37 +5,52 @@ ...@@ -5,37 +5,52 @@
# Installation # Installation
- Run this in the terminal - Run this in the terminal
```php ```php
composer require onestartup/blog composer require onestartup/blog
``` ```
- 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\Blog\BlogServiceProvider::class,
```` ````
- Run migration - Run migration
```php ```php
php artisan migrate php artisan migrate
``` ```
- add next lines to app/User.php - add next lines to app/User.php
```php ```php
public function entries() public function entries()
{ {
return $this->hasMany('Onestartup\Blog\Model\Entry', 'user_id'); return $this->hasMany('Onestartup\Blog\Model\Entry', 'user_id');
} }
``` ```
- run command for publish views and select [7 ] Provider: Onestartup\Blog\BlogServiceProvider - run command for publish views and select [7 ] Provider: Onestartup\Blog\BlogServiceProvider
```php ```php
php artisan vendor:publish php artisan vendor:publish
``` ```
- run serv - run serv
```php ```php
php artisan serve 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/blog/entry
``` ```
- test in this route - test in this route
```php ```php
http://localhost:8000/blog http://localhost:8000/blog
``` ```
\ 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