Skip to content

Instantly share code, notes, and snippets.

@aungwinthant
Created September 16, 2019 03:53
Show Gist options
  • Save aungwinthant/3ee14b8ead3287fa32eaf3de890b78a2 to your computer and use it in GitHub Desktop.
Save aungwinthant/3ee14b8ead3287fa32eaf3de890b78a2 to your computer and use it in GitHub Desktop.
Concrete for Category Repository
<?php
namespace App\Repositories;
use App\Models\Category;
class CategoryRepository extends Repository implements CategoryRepositoryInterface{
public function __construct(Category $category)
{
$this->model = $category;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment