@extends('admin.layout.master') @section('content')
@if(Session::has('success'))

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

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

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

@endif

Company Restore List

@if(!$com->isEmpty()) @foreach($com as $val) @endforeach @endif
Company Name Status Update Date
{{ $val->company_name }} @if($val->status == 1) Enable @else Disable @endif {{ $val->updated_at }} Restore
@endsection