@extends('dashboard::layouts.admin') @section('content')
{!! Breadcrumbs::render('profiles') !!} @include('profile::backend.partials.title') CREATE PROFILE
@if(!$profiles->isEmpty()) @foreach($profiles as $profile) @endforeach @else @endif
NAME DESCRIPTION EDIT DELETE
{!! str_limit(strip_tags($profile->name, 70)) !!} {!! str_limit(strip_tags($profile->description, 100)) !!}
Profile list is empty
@if(!$profiles->isEmpty()) @include('dashboard::partials.pagination', ['paginator' => $profiles, 'linkLimit' => $linkLimit]) @endif
@endsection