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