PATH:
home
/
lab2454c
/
omvstudio.com
/
resources
/
views
/
admin
/
entertain
@extends('admin.layouts.adminMasterLayout') @section('title', 'List Subscribe Plan') @section('home_management_select','active') @section('content') <div class="container-fluid"> <div class="dashboard__main mb-4"> <h2>Subscribe Plan List</h2> </div> <div class="card shadow mb-4"> <div class="card-body"> <div class="float-right"> <a href="{{ route('entertain.create') }}" class="btn btn-success mb-4">Add New</a> </div> <div class="table-responsive"> <table class="table table-bordered" id="example" width="100%" cellspacing="0"> <thead> <tr> <th>TITLE</th> <th>PRICE</th> <th>TENURE</th> <th>ACTION</th> </tr> </thead> <tbody> @if ($entertains->count() > 0 ) @foreach ($entertains as $entertain) <tr> <td>{{ $entertain->title }}</td> <td>{{ number_format($entertain->price,2) }}</td> <td>{{ $entertain->tenure }}</td> <td> <a href="{{ route('entertain.edit',$entertain) }}" class="btn btn-primary frm-btn_handler btn__edit">Edit</a> <form action="{{ route('entertain.destroy',$entertain->id) }}" method="POST"> {{ csrf_field() }} @method('DELETE') <button class="btn btn-danger frm-btn_handler btn__delete" onclick="return confirm('Are you sure?')">Delete </button> </form> </td> </tr> @endforeach @else <td colspan="7">No data Found!!</td> @endif </tbody> </table> </div> {{-- {{ $entertains->links() }} --}} </div> </div> </div> @endsection
[-] form.blade.php
[edit]
[-] create.blade.php
[edit]
[-] edit.blade.php
[edit]
[+]
..
[-] list.blade.php
[edit]