Initial user management in admin panel

This commit is contained in:
Nabeel Shahzad
2017-11-29 18:01:07 -06:00
parent f8cf430db8
commit f52b4bb4d9
17 changed files with 491 additions and 5 deletions

View File

@@ -0,0 +1,22 @@
<?php
namespace App\Repositories;
use App\Models\User;
class UserRepository extends BaseRepository
{
/**
* @var array
*/
protected $fieldSearchable = [
'email'
];
/**
* Configure the Model
**/
public function model()
{
return User::class;
}
}