@extends('layouts.master') @section('title','Company') @section('page-header') Company @stop @section('css') @stop @section('content') @include('partials._alert_message')
@foreach($companies as $key => $company) @endforeach
Id Group Name Company Name Business Type Company Code Contact Name Phone Number Logo Action
{{ $key+1 }} {{ $company->group->name }} {{ $company->name }} {{ $company->business_type }} {{ $company->code }} {{ $company->contact_name }} {{ $company->phone_number }} @if ($company->logo == "default.png")
{{ $company->name }}
@else
{{ $company->name }}
@endif
@if (hasPermission("company.infos.view", $slugs)) @endif @if (hasPermission("company.infos.edit", $slugs)) @endif @if (auth()->id() == 1) @endif
@csrf @method("DELETE")
{{-- @include('partials._paginate', ['data' => $companies]) --}}
{{-- export/print/save --}} {{--
--}}
@foreach($companies as $company) @endforeach @endsection @section('js') @stop