PHP code example of timwassenburg / default-model-order
1. Go to this page and download the library: Download timwassenburg/default-model-order 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/ */
timwassenburg / default-model-order example snippets
use TimWassenburg\DefaultModelOrder\DefaultOrder;
class User extends Model
{
use DefaultOrder;
protected static string $orderBy = 'name';
protected static string $orderDirection = 'desc';
}
php artisan vendor:publish --provider="TimWassenburg\DefaultModelOrder\DefaultModelOrderServiceProvider" --tag="config"