@extends('layouts/contentLayoutMaster') @section('title', 'Billing Plans') @section('vendor-style') {{-- Page Css files --}} @endsection @section('page-style') {{-- Page Css files --}} @endsection @section('content') Filters Type All @if($companyplans) @foreach($companyplans as $cp) input('companyname') == $cp->name ? 'selected' : '' }}> {{ $cp->name }} @endforeach @endif @if($message = Session::get('success')) Success : {{ $message }} × @endif Code Name Package Name Covered Tasks Amount {{-- Status --}} Action @if($billingplans) @foreach($billingplans as $plans) {{ $plans->code }} {{ $plans->name }} {{$plans->pkg_name}} {{ $plans->billing_verification_tasks }} RS. {{ $plans->amount }}.00/- {{-- {{ $plans->status == 'A' ? 'Active' : 'In-Active' }} --}} {{-- --}} @endforeach @endif @endsection