PHP code example of m165437 / eloquent-numbered

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

    

m165437 / eloquent-numbered example snippets


use Illuminate\Database\Eloquent\Model;
use M165437\EloquentNumbered\Numbered;

class MyModel extends Model
{
    use Numbered;
    ...
}

Schema::create('my_model', function (Blueprint $table) {
    $table->integer('number')->nullable();
    ...
});

const NUMBER = 'rank';

public function scopeNumbered($query, $model = null)
{
    return $query->oldest();
}

public function scopeNumbered($query, $model = null)
{
    return $query->oldest()
        ->when($model, function ($query, $model) {
            return $query->where('user_id', $model->user_id)
        });
}