@extends('layouts.dashboard')
@section('page_title')
CallCenter
@endsection
@section('page_header_title')
Manage Call Center
@endsection
@section('page_body')
{{ Breadcrumbs::render('call center') }}
| # |
Name |
Cnic |
Contact |
Interest |
|
@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,
)
)
| {{$loop->iteration}} |
{{ucfirst($rows->name)}} |
{{$rows->cnic}} |
{{$rows->contact}} |
{!!wordwrap($rows->interest,130,' ')!!} |
|
@endforeach
@endsection
@section('page_modal')
@include('callcenter.modals.add_call')
@include('callcenter.modals.update_call')
@endsection
@section('page_script')
@endsection