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

{{ __('Company List') }}

{{ __('Company List') }}

@foreach ($companies as $id => $company) @endforeach
# Logo Company Name Email Reg No Contact No Status Action
{{ ++$id }} {{ $company->name }} {{ $company->email }} {{ $company->reg_no }} {{ $company->contact_no }} @if ($company->status == 'active') {{ $company->status }} @else {{ $company->status }} @endif
@csrf Edit
@endsection