@extends('layouts.authenticated') @section('content')
List of Entities
@csrf

@foreach($entities as $entity) @endforeach
# Description Enabled Billable Action
{{ $i++ }} {{ $entity->description }} @if($entity->enabled == 1) Yes @else No @endif @if($entity->billable == 1) Yes @else No @endif
@endsection @section('customjs') @endsection