interviewqueries


Member since 2019

2 snippets

8597 profile views

0 Comment(s) Posted

View their favorites

their Tags


Profile

Achievement

first submission:submitting first snipplet

interviewqueries's Recent Snippets



« Prev 1 Next »
Default session time in PHP is 1440 seconds (24 minutes) and the Default session storage path is temporary folder/tmp on server.
0 9768 posted 6 years ago by interviewqueries
In Laravel you can use "IN" query as Using Eloquent $data = YourModel::whereIn('id', array(1, 2, 3))->get(); Using DB Query builder $data = DB::table('your_table')->whereIn('id', array(1, 2, 3))->get();
0 8670 posted 6 years ago by interviewqueries
« Prev 1 Next »