2017 © Pedro Peláez
 

library laravel-counter

view and like counter

image

jacobcyl/laravel-counter

view and like counter

  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 13 Versions
  • 1 % Grown

The README.md

Installation

composer require jacobcyl/view-counter:^2.0

Configuration

add provider, (*1)

    Jacobcyl\ViewCounter\ViewCounterServiceProvider::class,

publish config file and migration files, (*2)

    php artisan vendor:publish 
    php artisan migrate

add "use ViewCounterTrait;" to your model, (*3)

    $model->view()
 ```

##add schedule task
edit app/Console/Kernel.php file's schedule method.add **counter:sync** command:
```php
    protected function schedule(Schedule $schedule)
    {
        $schedule->command('counter:sync')->dailyAt('23:50');
    }

run crontab -e then add follow, (*4)

* * * * * php /path/to/artisan schedule:run >> /dev/null 2>&1

command

synchronize data to the database, (*5)

php artisan counter:sync

initialize view counter of specified model, (*6)

php artisan counter:view product 100 --action=plus // the specified product increased by 100 views

The Versions

03/06 2016

dev-master

9999999-dev

view and like counter

  Sources   Download

MIT

laravel counter views counter laravel counter

03/06 2016

2.1.4

2.1.4.0

view and like counter

  Sources   Download

MIT

laravel counter views counter laravel counter

03/06 2016

2.1.3

2.1.3.0

view and like counter

  Sources   Download

MIT

03/06 2016

2.1.2

2.1.2.0

view and like counter

  Sources   Download

MIT

02/06 2016

2.1.1

2.1.1.0

view and like counter

  Sources   Download

MIT

02/06 2016

2.1.0

2.1.0.0

view and like counter

  Sources   Download

MIT

02/06 2016

2.0.1

2.0.1.0

view and like counter

  Sources   Download

MIT

02/06 2016

1.1.2

1.1.2.0

view and like counter

  Sources   Download

02/06 2016

v2.0.0

2.0.0.0

view and like counter

  Sources   Download

01/06 2016

1.1.1

1.1.1.0

view and like counter

  Sources   Download

01/06 2016

1.1.0

1.1.0.0

view and like counter

  Sources   Download

31/05 2016

1.0.1

1.0.1.0

view and like counter

  Sources   Download

31/05 2016

1.0.0

1.0.0.0

view and like counter

  Sources   Download