@extends('backend.master') @section('title') {{ @$data['title'] }} @endsection @section('content')

{{ _trans('common.Committee') }}

@if (hasPermission('committee_create')) {{ _trans('common.add') }} @endif
@if (hasPermission('committee_show') || hasPermission('committee_edit') || hasPermission('committee_delete')) @endif @foreach ($data['committees'] as $committee) @if (hasPermission('committee_show') || hasPermission('committee_edit') || hasPermission('committee_delete')) @endif @endforeach
{{ _trans('common.SR No') }} {{ _trans('common.Committee name') }} {{ _trans('common.Property') }} {{ _trans('common.Email') }} {{ _trans('common.Phone') }} {{ _trans('common.Status') }}{{ _trans('common.Action') }}
{{ $loop->iteration }} {{ $committee->name }} {{ $committee->property->name }} {{ $committee->email }} {{ $committee->phone }} @if ($committee->status == 'active') {{ $committee->status }} @else {{ $committee->status }} @endif
@endsection @push('script') @include('backend.partials.delete-ajax') @endpush