@include('global.header-links')
@include('partials.sidebar')
@include('partials.header')

Industry List

Selected
@if(session()->has('success'))
{{ session()->get('success') }}
@elseif(session()->has('error'))
{{ session()->get('error') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @foreach ($industries as $industry) @endforeach
Industry Name Status Contractors Count Created by Created at Actions
{{$industry->industry_name}}
{{$industry->status == 1 ? 'Active' : 'Deactive'}}
0
You {{$industry->created_at->format('d M Y, g:i a')}} Actions
@include('partials.footer')
@include('global.footer-links')