PHP code example of laravolt / senarai

1. Go to this page and download the library: Download laravolt/senarai 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/ */

    

laravolt / senarai example snippets

 php
Laravolt\Senarai\ServiceProvider::class
 php
'Senarai' => Laravolt\Senarai\Facade::class
 bash
php artisan vendor:publish
 php
// following
$user = User::find(1);
Senarai::add($user, 'follow');

// tambahkan produk ke wishlist
$product = Product::find(1);
Senarai::add($product, 'wishlist');
 php
$user = User::find($request->input('id'));
foreach($user->containers as $item){
    echo $item->user_id;
}