l5-repository
l5-repository copied to clipboard
Return id as Primary Key after create?
How to get id after using $this->repository->create($request->all()); ?
@primangesta Just call ->id after create.
$this->repository->create($request->all())->id;
@Minotti it always return null. for a while i using DB::getPdo()->lastInsertId();
but i need to know if they have function for get id
Strange ... I tested it in my repository here and it worked ...
could you show me your model you have set?