mercredi 8 juin 2016

How to use laravel for restAPI with fractal to join two models?

I am using repository package to make API with laravel.I use transformers to transform data.It works well. I am wondering how can I use includes with transformers. As a example I have user class.I want to include UserBook model in User transformers.

I added following code to UserTransformer

protected $defaultIncludes = [
    'user_books',
];

 public function includeUserBooks(User $user){
        $project_books = $user->userBooks;

        return $project_books;
    }

But it is not return include.How can I call it through controller ?

Thank you.



via Chebli Mohamed

Aucun commentaire:

Enregistrer un commentaire