@extends('adminlte::page') @section('title', 'TechStack for '.$page->name.' '.$type.' Section') @section('content_header')

TechStack for {{$page->name}}'s {{$type}}

Add Points
@stop @php $index_count1 = 1; @endphp @section('content')
{{-- Uncomment and use this breadcrumb if needed --}} {{-- --}} @if ($errors->any())
@endif
{{ csrf_field() }}
@if(!empty($tgType)) @foreach($tgType as $value)
{{ $value->heading }}
@if(!empty($value->points))
    @foreach($value->points as $point)
  • {{-- Uncomment this if icon usage is needed --}} {{-- @if(!empty($point->icon)) icon @endif --}} {{ $point->heading_value }} - {{ $point->tagline }}
  • @endforeach
@else
No points added yet.
@endif
@endforeach @else

No TechStack sections found.

@endif
@stop @section('css') @stop @section('js') {{-- Optional custom JS can be added here --}} @stop