@extends('layouts.app') @section('title', 'Company List') @section('content')

Company_Details

{{-- Alert Messages --}} @include('common.alert')
All Companies
@foreach ($company as $shrow) @endforeach
Name Email Mobile Carrier_Number Status Action
{{ $shrow->name }} {{ $shrow->email }} {{ $shrow->mobile_number }} {{ $shrow->carrier_number}} @if ($shrow->status == 0) Inactive @elseif ($shrow->status == 1) Active @endif @if ($shrow->status == 0) @elseif ($shrow->status == 1) @endif
@csrf @method('DELETE')
{{ $company->links() }}
@endsection @section('scripts') @endsection