@extends('adminlte::page')
@section('title', 'Service')
@section('content_header')
Service Information
@stop
@section('content')
| No. |
Title |
Description |
Action |
@php
$i= 1;
@endphp
@if($data)
@foreach($data as $value)
| {{ $i }}. |
{{$value->heading}} |
{{$value->button_text}} |
|
@php
$i++;
@endphp
@endforeach
@endif
@stop
@section('css')
@stop
@section('js')
@stop