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
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'
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.