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

Company Listing

@if ($error = Session::get('error'))

{{ $error }}

@endif @if ($success = Session::get('success'))

{{ $success }}

@endif @if(!empty($departments)) @foreach($departments as $department) @endforeach @endif
ID Department Name Company Id Action
{{ $department->company_department_id }} {{ $department->name }} {{ $department->companyData()->first()->company_name }}
{{ $departments->links() }}
@endsection