@extends('layouts.fixed-steelmint') @section('content')
@if(session('error'))
{{ session('error') }}
@endif
@php $markets = [ ['key' => 'ferrous', 'label' => 'Ferrous'], ['key' => 'scrap-recycling', 'label' => 'Scrap & Recycling'], ['key' => 'coal', 'label' => 'Coal & Energy'], ['key' => 'non-ferrous', 'label' => 'Non Ferrous'], ['key' => 'agriculture', 'label' => 'Agriculture'], ]; @endphp
@foreach($markets as $market)
{{ $market['label'] }}
Product Short term Mid term Long term
Monthly Updated on Quarterly Updated on Yearly Updated on
Loading data...
@endforeach
@php use Carbon\Carbon; $now = Carbon::now(); // Short term → next 3 months $shortMonths = []; for ($i = 1; $i <= 3; $i++) { $shortMonths[]=$now->copy()->addMonths($i)->format('F'); // Full month name } // Determine FY year (Indian FY → Apr–Mar) // If current month >= April, FY base year is current year, else previous year $fyBaseYear = $now->month >= 4 ? $now->year : $now->year - 1; // Find financial quarter $month = $now->month; // Shift months so April = 1, May = 2, …, Mar = 12 $shiftedMonth = ($month - 4 + 12) % 12 + 1; $quarterNum = ceil($shiftedMonth / 3); // Example: "Q1FY25" $quarter = 'Q' . $quarterNum . 'FY' . (($fyBaseYear + 1) % 100); // Half year (Apr–Sep = HY1, Oct–Mar = HY2) $half = ($quarterNum <= 2 ? 'H1' : 'H2' ) . 'FY' . (($fyBaseYear + 1) % 100); // Long term → next FY (Apr–Mar) $long='FY' . (($fyBaseYear + 2) % 100); @endphp {{-- Short term labels --}} @foreach($shortMonths as $m) @endforeach {{-- Medium term --}} {{-- Long term --}}
Product Currency Spot price As on Forecasts Short term Medium term Long term
{{ $m }}Updated on{{ $quarter }} {{ $half }} Updated on{{ $long }} Updated on
Disclaimer:

BigMint has prepared this information with care and provides it for general reference only. It should not be used as the sole basis for trading, investment, or other critical decisions. The views expressed may come from various contributors and do not necessarily represent those of BigMint or its management.

BigMint, including its employees, directors, and aliates, is not responsible for any losses, damages, or actions resulting from the use or reliance on this information. Price forecasts are generated using a defined methodology based on selected factors from available data. Some relevant factors may not be included due to data availability or suitability, and the model does not account for unexpected events, market disruptions, or sentiment-driven changes

Users should keep these limitations in mind when interpreting the forecasts.

{{-- Pass PHP markets array to JS --}} @endsection('content')