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

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

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