| Conditions | 3 |
| Paths | 4 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | public function indexContact() |
||
| 14 | { |
||
| 15 | $contacts = config('coderz.caching', true) |
||
| 16 | ? (Cache::has('contacts') ? Cache::get('contacts') : Cache::rememberForever('contacts', function () { |
||
| 17 | return Contact::latest()->paginate(10); |
||
| 18 | })) |
||
| 19 | : Contact::latest()->paginate(10); |
||
| 20 | return compact('contacts'); |
||
| 21 | } |
||
| 59 |