PHP code example of henriale / stinter

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

    

henriale / stinter example snippets


class CreateProduct extends Stinter
{
  protected $basicPlanLimitation = 10;
  
  public function check(Authenticatable $user)
  {
      if ($user->products()->count() >= $this->basicPlanLimitation) {
        // user has too many products
        return false;
      }
      
      //user still can have more products
      return true;
  }
}

return [
    \App\Stinters\CreateProduct::class
];

<!-- using User model -->

if ($user->can(\App\Stinters\CreateProduct::class)) {
  echo 'yes, he is able';
}
bash
$ php artisan vendor:publish --provider="Henriale\Stinter\StintServiceProvider"
bash
$ php artisan make:stint CreateProduct