PostRepository.php 315 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<?php

namespace App\Repositories\Webprofile\En;

use App\Models\Webprofile\En\Posts;
use App\Repositories\Repository;

class PostRepository extends Repository
{
    public function __construct(Posts $model)
    {
        $this->model = $model;
    }

    public function get(){}
    public function paginate(){}
}