Nasir Devlani
Nasir Devlani

Reputation: 1

Laravel DB::transaction() not recognized in controller

I want to use transactions in my controller, but when I typed in DB::transaction(), its not recognized by it, also the autocomplete doesn't show transaction() as a function inside DB. I'm new to laravel, any help would be appreciated.

Upvotes: 0

Views: 179

Answers (1)

Shashi Prakash Gautam
Shashi Prakash Gautam

Reputation: 434

Try using like this..

\DB::transaction();

Upvotes: 2

Related Questions