Advertisement
Guest User

Untitled

a guest
Dec 5th, 2016
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App\Repositories\Eloquent;
  4.  
  5. use App\Models\Client;
  6. use App\Traits\EloquentRepositoryTrait;
  7. use App\Repositories\Contracts\ClientRepository as ClientRepositoryContract;
  8.  
  9. class ClientRepository implements ClientRepositoryContract
  10. {
  11. use EloquentRepositoryTrait;
  12.  
  13. /**
  14. * The model associated with the repository.
  15. *
  16. * @var App\Models\Client
  17. */
  18. protected $model = Client::class;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement