@extends('adminlte::page')
@section('title', 'Fee Calculator')
@section('content_header')
Fee Calculator
@stop
@section('content')
@php
$fee = $data[0] ?? null;
@endphp
@section('content_header')
@stop
| No. |
title_heading |
Category |
Country |
Description |
Description |
Action |
@php
$i= 1;
@endphp
@foreach($category as $value)
| {{$i}}. |
{{$value->fee_content_name}} |
{{$value->category->fee_content_name}} |
{{$value->countryname}} |
{{strip_tags($value->description)}} |
{{strip_tags($value->description1)}} |
|
@php
$i++;
@endphp
@endforeach
@stop
@section('css')
@stop
@section('js')
@stop