File Manager Lite
Dir:
/home/u540325668/domains/mkjsindia.org/public_html-chash/resources/views/admin/course
Upload
[..]
editPhoto.blade.php (3.62 KB)
Edit
Rename
Del
manage.blade.php (3.68 KB)
Edit
Rename
Del
Edit: manage.blade.php
@extends('admin.master') @section('title', 'Project Management') @section('mainContent') <div class="content-wrapper"> <!-- Page Header --> <section class="content-header"> <div class="container-fluid"> <div class="row align-items-center mb-3"> <div class="col-sm-6"> <h1>Project Management</h1> </div> <div class="col-sm-6 text-right"> <a href="{{ url('/admin/course/add') }}" class="btn btn-success"> <i class="fa fa-plus"></i> Create New Project </a> </div> </div> </div> </section> <!-- Main Content --> <section class="content"> <div class="container-fluid"> <div class="card shadow-sm"> <div class="card-header bg-primary text-white"> <h3 class="card-title"> <i class="fa fa-tasks"></i> Project List </h3> </div> <div class="card-body"> <div class="table-responsive"> <table id="example1" class="table table-bordered table-striped text-center align-middle"> <thead class="thead-dark"> <tr> <th>#</th> <th>Name</th> <th>Total Fee</th> <th>Admission Fee</th> <th>Monthly Fee</th> <th>Duration</th> <th>Action</th> </tr> </thead> <tbody> @foreach($courses as $course) <tr> <td>{{ $loop->iteration }}</td> <td>{{ $course->name }}</td> <td>{{ $course->totalFee }}</td> <td>{{ $course->admissionFee }}</td> <td>{{ $course->monthlyFee }}</td> <td>{{ $course->duration }} Month{{ $course->duration > 1 ? 's' : '' }}</td> <td> <a href="{{ url('/admin/course/edit/photo/'.$course->id) }}" class="btn btn-info btn-sm" title="Edit Photo"> <i class="fa fa-image"></i> </a> <a href="{{ url('/admin/course/edit/'.$course->id) }}" class="btn btn-success btn-sm" title="Edit Project"> <i class="fa fa-edit"></i> </a> <a href="{{ url('/admin/course/delete/'.$course->id) }}" class="btn btn-danger btn-sm" onclick="return confirm('Are you sure you want to delete this project?')" title="Delete Project"> <i class="fa fa-trash"></i> </a> </td> </tr> @endforeach </tbody> </table> </div> </div> </div> </div> </section> </div> @endsection
Simpan