@extends('adminlte::page') @section('title', 'Golf Section Tabs') @section('content')

Golf Section Tabs List

Add New Tab
{{-- Flash Messages --}} @if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif {{-- Table --}}
@forelse($sections as $section) @foreach($section->tags as $tag) @endforeach @empty @endforelse
ID Section Tab Title Status Actions
{{ $tag->id }} {{ $section->section_title }} {{ $tag->tab_title }}
@csrf @if($tag->status) @else @endif
Edit
No records found.
{{-- Pagination --}}
{{ $sections->links() }}
@endsection @section('js') @stop