@extends('layouts.app') @section('breadcrumbs') @endsection @section('content')
@include('whitelist-profiles.filter', $filter_parameters)
@include('partials.messages')
Whitelist Profiles
@can('create', App\Models\WhitelistProfile::class) Create new Generate Whitelists @endcan
@if (count($whitelist_profiles) > 0)
@foreach ($whitelist_profiles as $whitelist_profile) @can('view', $whitelist_profile) @endcan @endforeach
Name Description Action
{{ $whitelist_profile->name }} {{ \Illuminate\Support\Str::limit($whitelist_profile->description, 200, $end='...') }} @can('view', $whitelist_profile)View@endcan @can('update', $whitelist_profile)Edit@endcan
{!! $whitelist_profiles->links() !!} @else

No whitelist profiles found.

@endif
@endsection('content')