@extends('laravel-crm::layouts.app') @section('content')
@include('laravel-crm::layouts.partials.nav-activities')

{{ ucfirst(__('laravel-crm::lang.calls')) }}

@if($calls && $calls->count() > 0) @foreach($calls as $call) @livewire('call',[ 'call' => $call ], key($call->id)) @endforeach @endif
@if($calls instanceof \Illuminate\Pagination\LengthAwarePaginator ) @endif
@endsection