PHP code example of kharanenka / laravel-scope-name
1. Go to this page and download the library: Download kharanenka/laravel-scope-name 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/ */
kharanenka / laravel-scope-name example snippets
"kharanenka/laravel-scope-active": "1.0.*"
class MyModel extend Model {
use Kharanenka\Scope\NameField;
...
}
$obElement = MyModel::getByName('Andrey')->first();
$obElement = MyModel::likeByName('And')->first();
$obElement = MyModel::nullName()->get();
$obElement = MyModel::notNullName()->get();