@extends('billings.layouts.admin') @section('content') @include('billings.layouts.partials._alert')

{{App\Language::trans('No Active Product')}}
{{App\Language::trans("Make sure at least one product are in active status for the operation")}}

@endsection @section('script') var customerInfoUrl = "{{action('CustomersController@getInfo')}}"; function init_customer_info(me) { $.get(customerInfoUrl, {customer_id:$(me).val()}, function(fdata){ for (var key in fdata.data) { console.log("key " + key + " has value " + fdata.data[key]); } },"json"); } init_select2($("select[name=customer_id]")); init_select2($("select[name=sort_by]")); @endsection