Skip to content

Instantly share code, notes, and snippets.

@brunokunace
Created January 15, 2018 20:48
Show Gist options
  • Select an option

  • Save brunokunace/25dae4bba521504bc7e90bf3ddab8888 to your computer and use it in GitHub Desktop.

Select an option

Save brunokunace/25dae4bba521504bc7e90bf3ddab8888 to your computer and use it in GitHub Desktop.
<?php
namespace App\Http\Repositories;
use Illuminate\Database\Eloquent\Model as Eloquent;
class CategoryRepository extends Repository
{
public function __construct(Eloquent $model)
{
parent::__construct($model);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment