@extends('laundry::layouts/contentLayoutMaster') @section('title', __('Month Report') ) @section('vendor-style') {{-- vendor css files --}} @livewireStyles @endsection @section('page-style') @endsection @section('content') @if(session()->has('message')) @endif @if($errors->any()) {!! implode('', $errors->all('')) !!} @endif
@foreach($rows as $row) @endforeach
# {{ __('Sub Category') }} {{ __('Tot. New Registered') }} {{ __('Tot. Washing') }} {{ __('Washing Cost') }} {{ __('Tot. Expired') }} {{ __('Tot. Damage') }} {{ __('Tot. Lost') }}
{{ $row['serial'] }} {{ $row['name'] }} {{ $row['registered'] }} {{ $row['t_washes'] }} Rs. {{ $row['t_washes_cost'] }} {{ $row['t_expired'] }} {{ $row['t_damaged'] }} {{ $row['t_lost'] }}
@endsection @section('vendor-script') @livewireScripts {{-- vendor files --}} @endsection @section('page-script') @endsection