@extends('admin.layouts.master') @section('title', 'List of Companies') @section('content')

Companies List

Companies List
@foreach ($companies as $id => $company) @endforeach
# Logo Name Reg no Status Contact no Actions
{{ ++$id }}
{{ $company->name }} {{ $company->reg_no }} @if ($company->status == 1) Active @else InActive @endif {{ $company->contact_no }}
@endsection @section('js') @endsection