39 lines
1.3 KiB
PHP
39 lines
1.3 KiB
PHP
@extends('layouts.app')
|
|
@section('title', __('crm::lang.companies'))
|
|
@section('content')
|
|
@include('crm::layouts.nav')
|
|
<section class="content-header"><h1>@lang('crm::lang.companies')</h1></section>
|
|
<section class="content">
|
|
@component('components.widget', ['class' => 'box-primary'])
|
|
<table class="table table-bordered table-striped" id="companies_table" style="width:100%;">
|
|
<thead>
|
|
<tr>
|
|
<th>@lang('crm::lang.companies')</th>
|
|
<th>@lang('lang_v1.city')</th>
|
|
<th>@lang('crm::lang.profile_completion')</th>
|
|
<th>@lang('crm::lang.lead_score')</th>
|
|
<th>@lang('messages.action')</th>
|
|
</tr>
|
|
</thead>
|
|
</table>
|
|
@endcomponent
|
|
</section>
|
|
@endsection
|
|
@section('javascript')
|
|
<script>
|
|
$(function() {
|
|
$('#companies_table').DataTable({
|
|
processing: true, serverSide: true,
|
|
ajax: '{{ action([\Modules\Crm\Http\Controllers\CompanyProfileController::class, "index"]) }}',
|
|
columns: [
|
|
{data: 'brand_name', defaultContent: '-'},
|
|
{data: 'city', defaultContent: '-'},
|
|
{data: 'profile_completion'},
|
|
{data: 'lead_score', defaultContent: '-'},
|
|
{data: 'action', orderable: false, searchable: false}
|
|
]
|
|
});
|
|
});
|
|
</script>
|
|
@endsection
|