Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

how to one increment after post in laravel collective

Category::find($CategoryId)->increment('post',1);
         or
$new_post = Category::where('id','=',Request::input('category'))->first();
$new_post->increment('post',1);
 
PREVIOUS NEXT
Tagged: #increment #post #laravel #collective
ADD COMMENT
Topic
Name
8+8 =