@extends('layouts.master', ['title' => 'Companies']) @section('contents')

Company List

@if($message = Session::get('success'))
@endif @if($message = Session::get('error'))
@endif
@forelse($companies as $company) @empty @endempty
Id Company Name Mobile Email Address Registration No. Action
{{ $loop->iteration }} {{ $company->name }} {{ $company->mobile }} {{ $company->email }} {{ $company->address }} {{ $company->registration_no }} View
No Record Found.
{{-- Pagination --}}
{{ $companies->links() }}
@endsection