132 lines
7.4 KiB
PHP
Raw Normal View History

2017-09-14 22:21:00 +03:00
@extends('layouts.admin')
@section('title', trans_choice('general.customers', 2))
@section('new_button')
2020-10-22 18:58:58 +03:00
@can('create-sales-customers')
<a href="{{ route('customers.create') }}" class="btn btn-success btn-sm">{{ trans('general.add_new') }}</a>
<a href="{{ route('import.create', ['group' => 'sales', 'type' => 'customers']) }}" class="btn btn-white btn-sm">{{ trans('import.import') }}</a>
@endcan
<a href="{{ route('customers.export', request()->input()) }}" class="btn btn-white btn-sm">{{ trans('general.export') }}</a>
2018-06-11 03:47:32 +03:00
@endsection
2017-09-14 22:21:00 +03:00
@section('content')
2020-11-09 20:30:05 +03:00
@if ($customers->count() || request()->get('search', false))
2019-12-12 19:15:20 +03:00
<div class="card">
2020-02-02 21:08:00 +03:00
<div class="card-header border-bottom-0" :class="[{'bg-gradient-primary': bulk_action.show}]">
2019-12-12 19:15:20 +03:00
{!! Form::open([
'method' => 'GET',
2020-02-02 21:08:00 +03:00
'route' => 'customers.index',
'role' => 'form',
2019-12-12 19:15:20 +03:00
'class' => 'mb-0'
]) !!}
2020-02-02 21:08:00 +03:00
<div class="align-items-center" v-if="!bulk_action.show">
2020-11-06 01:48:49 +03:00
<x-search-string model="App\Models\Common\Contact" />
2019-11-16 10:21:14 +03:00
</div>
2020-02-02 21:08:00 +03:00
{{ Form::bulkActionRowGroup('general.customers', $bulk_actions, ['group' => 'sales', 'type' => 'customers']) }}
2019-12-12 19:15:20 +03:00
{!! Form::close() !!}
</div>
2017-09-14 22:21:00 +03:00
2019-12-12 19:15:20 +03:00
<div class="table-responsive">
<table class="table table-flush table-hover">
<thead class="thead-light">
<tr class="row table-head-line">
2019-12-16 17:03:53 +03:00
<th class="col-sm-2 col-md-1 col-lg-1 col-xl-1 d-none d-sm-block">{{ Form::bulkActionAllGroup() }}</th>
2020-09-07 15:42:56 +03:00
<th class="col-xs-4 col-sm-3 col-md-4 col-lg-3 col-xl-3">@sortablelink('name', trans('general.name'), ['filter' => 'active, visible'], ['class' => 'col-aka', 'rel' => 'nofollow'])</th>
<th class="col-md-3 col-lg-3 col-xl-3 d-none d-md-block">@sortablelink('email', trans('general.email'))</th>
2020-01-13 19:26:25 +03:00
<th class="col-lg-2 col-xl-2 d-none d-lg-block text-right">@sortablelink('unpaid', trans('general.unpaid'))</th>
2020-09-07 15:42:56 +03:00
<th class="col-xs-4 col-sm-2 col-md-2 col-lg-2 col-xl-2 text-center">@sortablelink('enabled', trans('general.enabled'))</th>
2019-12-12 19:15:20 +03:00
<th class="col-xs-4 col-sm-2 col-md-2 col-lg-1 col-xl-1 text-center">{{ trans('general.actions') }}</th>
</tr>
</thead>
2019-11-16 10:21:14 +03:00
2019-12-12 19:15:20 +03:00
<tbody>
@foreach($customers as $item)
<tr class="row align-items-center border-top-1">
2019-12-16 17:03:53 +03:00
<td class="col-sm-2 col-md-1 col-lg-1 col-xl-1 d-none d-sm-block">
{{ Form::bulkActionGroup($item->id, $item->name) }}
2019-12-12 19:15:20 +03:00
</td>
2021-06-29 20:05:11 +03:00
2021-06-22 12:48:58 +03:00
<td class="col-xs-4 col-sm-3 col-md-4 col-lg-3 col-xl-3">
<a class="col-aka long-texts d-block" href="{{ route('customers.show', $item->id) }}">{{ $item->name }}</a>
2019-12-12 19:15:20 +03:00
</td>
2021-06-29 20:05:11 +03:00
2020-09-07 15:42:56 +03:00
<td class="col-md-3 col-lg-3 col-xl-3 d-none d-md-block long-texts">
<el-tooltip content="{{ !empty($item->phone) ? $item->phone : trans('general.na') }}"
effect="dark"
placement="top">
<span>{{ !empty($item->email) ? $item->email : trans('general.na') }}</span>
</el-tooltip>
2019-12-12 19:15:20 +03:00
</td>
2021-06-29 20:05:11 +03:00
2020-09-07 15:42:56 +03:00
<td class="col-lg-2 col-xl-2 d-none d-lg-block text-right long-texts">
2019-12-12 19:15:20 +03:00
@money($item->unpaid, setting('default.currency'), true)
</td>
2021-06-29 20:05:11 +03:00
2020-09-07 15:42:56 +03:00
<td class="col-xs-4 col-sm-2 col-md-2 col-lg-2 col-xl-2 text-center">
2019-12-31 15:49:09 +03:00
@if (user()->can('update-sales-customers'))
2019-12-12 19:15:20 +03:00
{{ Form::enabledGroup($item->id, $item->name, $item->enabled) }}
2018-06-11 11:53:45 +03:00
@else
2019-12-12 19:15:20 +03:00
@if ($item->enabled)
2020-09-07 15:42:56 +03:00
<badge rounded type="success" class="mw-60 d-inline-block">{{ trans('general.yes') }}</badge>
2019-12-12 19:15:20 +03:00
@else
2020-09-07 15:42:56 +03:00
<badge rounded type="danger" class="mw-60 d-inline-block">{{ trans('general.no') }}</badge>
2019-12-12 19:15:20 +03:00
@endif
2018-06-11 11:53:45 +03:00
@endif
2019-12-12 19:15:20 +03:00
</td>
2021-06-29 20:05:11 +03:00
2019-12-12 19:15:20 +03:00
<td class="col-xs-4 col-sm-2 col-md-2 col-lg-1 col-xl-1 text-center">
<div class="dropdown">
<a class="btn btn-neutral btn-sm text-light items-align-center py-2" href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="fa fa-ellipsis-h text-muted"></i>
</a>
2021-06-29 20:05:11 +03:00
2019-12-12 19:15:20 +03:00
<div class="dropdown-menu dropdown-menu-right dropdown-menu-arrow">
2021-06-29 20:05:11 +03:00
<a class="dropdown-item" href="{{ route('customers.show', $item->id) }}">
{{ trans('general.show') }}
</a>
@can('create-sales-customers')
<a class="dropdown-item" href="{{ route('customers.edit', $item->id) }}">
{{ trans('general.edit') }}
</a>
@endcan
2019-11-16 10:21:14 +03:00
<div class="dropdown-divider"></div>
2021-06-29 20:05:11 +03:00
2020-10-22 18:58:58 +03:00
@can('create-sales-customers')
2021-06-29 20:05:11 +03:00
<a class="dropdown-item" href="{{ route('customers.duplicate', $item->id) }}">
{{ trans('general.duplicate') }}
</a>
2019-11-16 10:21:14 +03:00
2019-12-12 19:15:20 +03:00
<div class="dropdown-divider"></div>
2020-10-22 18:58:58 +03:00
@endcan
2021-06-29 20:05:11 +03:00
2020-10-22 18:58:58 +03:00
@can('delete-sales-customers')
2020-02-02 21:08:00 +03:00
{!! Form::deleteLink($item, 'customers.destroy') !!}
2020-10-22 18:58:58 +03:00
@endcan
2019-12-12 19:15:20 +03:00
</div>
2019-11-16 10:21:14 +03:00
</div>
2019-12-12 19:15:20 +03:00
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
2019-11-16 10:21:14 +03:00
2019-12-12 19:15:20 +03:00
<div class="card-footer table-action">
<div class="row">
2019-12-24 17:53:18 +03:00
@include('partials.admin.pagination', ['items' => $customers])
2019-12-12 19:15:20 +03:00
</div>
2019-11-16 10:21:14 +03:00
</div>
</div>
2019-12-12 19:15:20 +03:00
@else
2021-02-12 17:51:46 +03:00
<x-empty-page group="sales" page="customers" />
2019-12-12 19:15:20 +03:00
@endif
2017-09-14 22:21:00 +03:00
@endsection
2019-11-16 10:21:14 +03:00
@push('scripts_start')
2019-12-31 15:49:09 +03:00
<script src="{{ asset('public/js/sales/customers.js?v=' . version('short')) }}"></script>
2019-11-16 10:21:14 +03:00
@endpush