@extends('layouts.app') @section('page-pretitle', __('Management')) @section('page-title', __('Company Profile')) @section('content') @if ($errors->any()) @endif @if (session('success')) @endif

{{ __('Search Filter') }}

@include('asset.entries') @if(auth()->user()->role === 'admin') @endif
@forelse($companies as $index => $company) @empty @endforelse
# {{ __('Company Name') }} {{ __('Address') }} {{ __('Email') }} {{ __('Phone') }} {{ __('Action') }}
{{ $index + $companies->firstItem() }} {{ $company->name }} {{ $company->address }} {{ $company->email }} {{ $company->phone }}
{{ __('No companies found.') }}
@if($companies->hasPages()) @endif
@endsection