@extends('layouts.app') @section('content') @include('includes.breadcrumb')
@php $cityData = json_decode(file_get_contents(public_path('data/home/homeIndustry.json')),true); shuffle($cityData); $i = 1; @endphp @foreach($cityData as $key => $value) @if($i == 1 || ($i %10) == 0)
    @endif @php $valueCheck = str_replace(' ','-',__($value['industry'])); @endphp
  • {{__($value['industry'])}}
  • @php $i++; @endphp @if(($i %10) == 0)
@endif @endforeach
@endsection