PHP code example of psprokofiev / laravel-repository
1. Go to this page and download the library: Download psprokofiev/laravel-repository 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/ */
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Psprokofiev\LaravelRepository\InteractsWithRepository;
class User extends Model {
use InteractsWithRepository;
//
}
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Psprokofiev\LaravelRepository\InteractsWithRepository;
class User extends Model {
use InteractsWithRepository;
protected static $repository = \App\Another\Namespace\UserRepository::class;
//
}
\App\Models\User::repository()->getSingle(1);
cmd
php artisan make:repository User
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.