for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace RecentlyViewed\Models;
use Illuminate\Database\Eloquent\Model;
class RecentViews extends Model
{
protected $guarded = [];
public function getTable(): string
return config('recently-viewed.persist_table');
}