@extends('adminlte::layouts.app') @section('htmlheader_title') Product List @endsection @section('page_title') Product List @endsection @section('contentheader_title') Product List @endsection @section('contentheader_description') @endsection @section('main-content')
@foreach (\App\Models\Service::active()->get() as $o) @endforeach
ID Service Product Monthly Cost Traffic
{{ $o->id }} {{ $o->sname }} {{ $o->product->name }} {{ number_format($o->billing_monthly_price,2) }} {{ $o->product->type ? number_format($o->product->type->cost,2) : 'NO TYPE' }} {{ $o->product->type ? $o->product->type->allowance_string() : '-' }}
@endsection @section('page-scripts') @css(datatables,bootstrap4|fixedheader|responsive|rowgroup|buttons) @js(datatables,bootstrap4|fixedheader|responsive|rowgroup|buttons) @append