PATH:
home
/
lab2454c
/
westernclear.net
/
resources
/
views
/
admin
/
homepageManager
/
unmatchSection
@extends('admin.layout.adminMasterLayout') @section('title', 'Unmatched Section') @section('content') <div class="content-wrapper"> @include('admin.homepageManager.unmatchSection.text.list') <div class="text-right"> <a href="{{ route('unmatchSection.create') }}" class="btn btn-info font-weight-bold mb-3">+ Add More</a> </div> <div class="row"> <div class="col-lg-12 grid-margin stretch-card"> <div class="card"> <div class="card-body"> <h4 class="card-title">Unmatched Section</h4> <hr> <div class="table-responsive"> <table class="table table-striped"> <thead> <tr> <th>Title</th> <th>Subtitle</th> <th>Action</th> </tr> </thead> <tbody> @forelse($unmatchSections as $unmatchSection) <tr> <td> {{ $unmatchSection->title }} </td> <td> {{ $unmatchSection->subtitle }} </td> <td> <a href="{{ route('unmatchSection.edit', $unmatchSection) }}" class="btn btn-success btn-sm ml-3 d-inline-block"> <i class="icon-open"></i> Edit </a> <div class="d-inline-block"> <form action="{{route('unmatchSection.destroy', $unmatchSection->id)}}" method="POST" > @csrf @method('DELETE') <button type="submit" class="btn btn-primary btn-sm" style="cursor: pointer;" onclick="return confirm('Are you sure?')"> Delete </button> </form> </div> </td> </tr> @empty <td colspan="5">No Content</td> @endforelse </tbody> </table> </div> </div> </div> </div> </div> </div> @endsection
[-] form.blade.php
[edit]
[-] create.blade.php
[edit]
[-] edit.blade.php
[edit]
[+]
..
[+]
text
[-] list.blade.php
[edit]