📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-02 07:11:42
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
resources
/
views
/
admin
/
profession
📍 /home/orkouolp/web/testing.orkobd/laravel/resources/views/admin/profession
🔄 Refresh
✏️
Editing: index.blade.php
Writable
@extends('admin.layouts.master') @section('contents') <section class="section"> <div class="section-header"> <h1>Profession</h1> </div> <div class="section-body"> <div class="col-12"> <div class="card"> <div class="card-header"> <h4>All Professions</h4> <div class="card-header-form"> <form action="{{ route('admin.professions.index') }}" method="GET"> <div class="input-group"> <input type="text" class="form-control" placeholder="Search" name="search" value="{{ request('search') }}"> <div class="input-group-btn"> <button type="submit" style="height:40px;" class="btn btn-primary"> <i class="fas fa-search"></i></button> </div> </div> </form> </div> <a href="{{ route('admin.professions.create') }}" class="btn btn-primary"> <i class="fas fa-plus-circle"></i> Create new</a> </div> <div class="card-body p-0"> <div class="table-responsive"> <table class="table table-striped"> <tr> <th>Name</th> <th>slug</th> <th style="width:12%;">Action</th> </tr> <tbody> @forelse($professions as $profession) <tr> <td>{{ $profession->name }}</td> <td>{{ $profession->slug }}</td> <td> <a href="{{ route('admin.professions.edit', $profession->id) }}" class="btn btn-sm btn-primary"><i class="fas fa-edit"></i></a> <a href="{{ route('admin.professions.destroy', $profession->id) }}" class="btn btn-sm btn-danger delete-item"><i class="fas fa-trash-alt"></i></a> </td> </tr> @empty <tr> <td colspan="3" class="text-center">No result found!</td> </tr> @endforelse </tbody> </table> </div> </div> <div class="card-footer text-right"> <nav class="d-inline-block"> @if($professions->hasPages()) {{ $professions->withQueryString()->links() }} @endif </nav> </div> </div> </div> </div> </section> @endsection
💾 Save Changes
❌ Cancel