@extends('layouts.frontend') @section('content')
@can('organization_create') @endcan
{{ trans('cruds.organization.title_singular') }} {{ trans('global.list') }}
@foreach($organizations as $key => $organization) @endforeach
{{ trans('cruds.organization.fields.id') }} {{ trans('cruds.organization.fields.name') }}  
{{ $organization->id ?? '' }} {{ $organization->name ?? '' }} @can('organization_show') {{ trans('global.view') }} @endcan @can('organization_edit') {{ trans('global.edit') }} @endcan @can('organization_delete')
@endcan
@endsection @section('scripts') @parent @endsection