@extends('layouts.dashboard') @section('page_title') CallCenter @endsection @section('page_header_title') Manage Call Center @endsection @section('page_body') {{ Breadcrumbs::render('call center') }}
@if(Auth::user()->hasAnyPermission(['All','Add Call']))    @endif

Add Call

@php($pass_data = []) @foreach($calls as $rows) @php( $pass_data = array( 'id' => Crypt::encrypt($rows->id), 'name' => $rows->name, 'cnic' => $rows->cnic, 'contact' => $rows->contact, 'interest' => $rows->interest, ) ) @endforeach
# Name Cnic Contact Interest
{{$loop->iteration}} {{ucfirst($rows->name)}} {{$rows->cnic}} {{$rows->contact}}

{!!wordwrap($rows->interest,130,'
')!!}

@endsection @section('page_modal') @include('callcenter.modals.add_call') @include('callcenter.modals.update_call') @endsection @section('page_script') @endsection