PHP code example of think.studio / laravel-recently-viewed
1. Go to this page and download the library: Download think.studio/laravel-recently-viewed 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/ */
think.studio / laravel-recently-viewed example snippets
use Illuminate\Database\Eloquent\Model;
use RecentlyViewed\Models\Contracts\Viewable;
use RecentlyViewed\Models\Traits\CanBeViewed;
class Product extends Model implements Viewable
{
// implement interface
use CanBeViewed;
}
class ProductController extends Controller
{
public function show(Product $product)
{
\RecentlyViewed\Facades\RecentlyViewed::add($product);
return view('my-view');
}
}
class ProductsViewComposer
{
public function compose(View $view)
{
$view->with([
'recentlyViewedProducts' => \RecentlyViewed\Facades\RecentlyViewed::get(Product::class),
// or
'recentlyViewedProductsWithoutLast' => \RecentlyViewed\Facades\RecentlyViewed::get(Product::class)->slice(1),
]);
// or
$view->with([
'recentlyViewedProductsFiltered' => \RecentlyViewed\Facades\RecentlyViewed::getQuery(Product::class)
?->where('not_display_in_recently_list', false)->get()
??collect([]),
]);
}
}
use RecentlyViewed\Models\Contracts\Viewer;
use RecentlyViewed\Models\Traits\CanView;
class User extends Authenticatable implements Viewer
{
use CanView;
// ...
}
class LoginController extends Controller
{
// ...
protected function authenticated(Request $request, $user)
{
\RecentlyViewed::mergePersistToCurrentSession();
}
}