@extends('layouts.app') @section('stitle', __('messages.pro_cost_report')) @section('title', __('messages.pro_cost_report')) @section('content')
@if(session()->get('title') == "success") @elseif (session()->get('title') == "error") @elseif($errors->any()) @endif
{{--
--}} {{-- --}} {{--
--}}
@include('reports.report_pro_cost_menu')
{{--

Table Hover Animation

--}}
@if(isset($data)) @if(count($data)>0) @foreach($data as $pro) @endforeach @else @endif
{{__('messages.SKU')}} {{ __('messages.CostingMethod') }} {{ __('messages.COST') }}
{{$pro->name}} {{$pro->sku}} {{$pro->costingMethod->name ?? 'Retail'}} {{$pro->cost}}
No Record Exist
@endsection