@extends('layouts.admin_layout') @section('content')

Manage Parent Companies

@if(Session::has('success'))

×{{ Session::get('success') }}

@endif @if(Session::has('error'))

{{ Session::get('error') }}

@endif

Parent Companies List

Add
@php $i=1;@endphp @foreach($parentCompanies as $company) @endforeach
# Sorting Parent Company Name Status Action
{{$i++}} {{$company->sorting}} {{$company->company_name}} @if($company->status == 1) Active @else In-Active@endif
{{ method_field('DELETE') }}{{csrf_field()}}
@endsection