PHP code example of dominikstyp / laravel-model-abstractor

1. Go to this page and download the library: Download dominikstyp/laravel-model-abstractor 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/ */

    

dominikstyp / laravel-model-abstractor example snippets


 'providers' => [
    // ...
    DominikStyp\LaravelModelAbstractor\LaravelModelAbstractorServiceProvider::class,
    // ...
  ],



namespace App;

use Illuminate\Database\Eloquent\Model;

class Dummy1 extends Model
{
    //
}
 artisan make:model Dummy1



namespace App\Models;

class Dummy1 extends AbstractModel
{
    //
}


namespace App\Models;

/**
 * AbstractModel
 *
 */
abstract class AbstractModel extends \Illuminate\Database\Eloquent\Model {
    /** your custom code **/
}
 artisan laravel-model-abstractor:change-models-inheritance

DummyModel1::where("something",1)->newest();
DummyModel1::where("something",2)->oldest();
// these are equivalent of
DummyModel1::where("something",1)->orderBy("id","desc");
DummyModel1::where("something",2)->orderBy("id","asc");

composer san vendor:publish --provider='\\DominikStyp\\LaravelModelAbstractor\\LaravelModelAbstractorServiceProvider'