$count = Model::where('status','=','1')->count();
Model would be the model for the database table that you want to count.
I highly recommend you read the Eloquent ORM section of the Laravel Documentation.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.