PHP code example of patinthehat / laravel-repositories
1. Go to this page and download the library: Download patinthehat/laravel-repositories 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/ */
patinthehat / laravel-repositories example snippets
use Permafrost\Repository;
class UserRepository extends Repository
{
public static function model()
{
return 'App\\User';
}
}
$user = UserRepository::findByFirstName('john');
UserRepository::findByFirstName('john')
User::where('first_name', 'john')->first()