{{-- resources/views/gis/organizations/index.blade.php --}} @extends('layouts.app') @section('title', 'Организации ГИС ЖКХ') @section('content')

Организации ГИС ЖКХ

Добавить организацию Назад
@if(session('success')) @endif
@forelse($organizations as $org) @empty @endforelse
ID Название ОГРН/ИНН Телефон Контактное лицо Статус Действия
{{ $org->id }} {{ $org->name }} @if($org->email)
{{ $org->email }} @endif
@if($org->ogrn) ОГРН: {{ $org->ogrn }}
@endif @if($org->inn) ИНН: {{ $org->inn }}@endif
{{ $org->phone ?? '-' }} {{ $org->contact_person ?? '-' }} {{ $org->is_active ? 'Активна' : 'Неактивна' }}
@csrf @method('DELETE')
Нет организаций
{{ $organizations->links() }}
@endsection