@extends('layouts.app') @section('title', 'Company') @section('content')
@include('settings.common_tabs')
@foreach($companyData as $company) @endforeach
Sl No Company Name Address City State Contact Number Status Action
{{ $i++}} {{ $company->company_name}} {{ $company->address}} {{ $company->city}} {{ $company->state}} {{ $company->contact_no}} @if($company->is_active==1) Active @else Inactive @endif  
@endsection