1. Go to this page and download the library: Download larastash/reviews library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
larastash / reviews example snippets
namespace App\Models;
...
use Larastash\Reviews\Concerns\Reviewable;
class Product extends Model
{
use Reviewable;
...
}
namespace App\Models;
...
use Larastash\Reviews\Concerns\Reviewer;
class User extends Model
{
use Reviewer;
...
}
review($product)->publish(5); // only value
review($product)->publish(5, 'I love it!'); // value & body
review($product)->publish(5, 'I love it!', 'Awesome'); // value, body & title
review($product)->publish(5, title: 'Awesome'); // value & title