Commit cfc8a153 by Angel MAS

readme add

parent 0b3ef359
# Package blog OneStartup
**onestartup/blog** is a module blog for websites
# Installation
- Run this in the terminal
```php
composer require onestartup/blog
```
- after add the ServiceProvider to the providers array in config/app.php
```php
Onestartup\Blog\BlogServiceProvider::class,
````
- Run migration
```php
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 and select [7 ] Provider: Onestartup\Blog\BlogServiceProvider
```php
php artisan vendor:publish
```
- run serv
```php
php artisan serve
```
- test in this route how admin user
```php
http://localhost:8000/admin/blog/entry
```
- test in this route
```php
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