⚝
One Hat Cyber Team
⚝
Your IP:
172.22.0.1
Server IP:
151.80.20.34
Server:
Linux 794f04d97d5e 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64
Server Software:
Apache/2.4.62 (Debian)
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
html
/
resources
/
views
/
contractType
/
View File Name :
index.blade.php
@extends('layouts.admin') @section('page-title') {{__('Manage Contract Type')}} @endsection @push('script-page') @endpush @section('breadcrumb') <li class="breadcrumb-item"><a href="{{route('dashboard')}}">{{__('Dashboard')}}</a></li> <li class="breadcrumb-item">{{__('Contract Type')}}</li> @endsection @section('action-btn') <div class="float-end"> <a href="#" data-size="md" data-url="{{ route('contractType.create') }}" data-ajax-popup="true" data-bs-toggle="tooltip" title="{{__('Create New Contract Type')}}" class="btn btn-sm btn-primary"> <i class="ti ti-plus"></i> </a> </div> @endsection @section('content') <div class="row"> <div class="col-md-3"> @include('layouts.crm_setup') </div> <div class="col-md-9"> <div class="card"> <div class="card-body table-border-style"> <div class="table-responsive"> <table class="table datatable"> <thead> <tr> <th>{{__('Name')}}</th> @if(\Auth::user()->type=='company') <th class="text-end ">{{__('Action')}}</th> @endif </tr> </thead> <tbody> @foreach ($types as $type) <tr class="font-style"> <td>{{ $type->name }}</td> @if(\Auth::user()->type=='company') <td class="action text-end"> <div class="action-btn bg-info ms-2"> <a href="#" class="mx-3 btn btn-sm d-inline-flex align-items-center" data-url="{{ route('contractType.edit',$type->id) }}" data-ajax-popup="true" data-size="md" data-bs-toggle="tooltip" title="{{__('Edit')}}" data-title="{{__('Edit Type')}}"> <i class="ti ti-pencil text-white"></i> </a> </div> <div class="action-btn bg-danger ms-2"> {!! Form::open(['method' => 'DELETE', 'route' => ['contractType.destroy', $type->id]]) !!} <a href="#" class="mx-3 btn btn-sm align-items-center bs-pass-para" data-bs-toggle="tooltip" title="{{__('Delete')}}"><i class="ti ti-trash text-white"></i></a> {!! Form::close() !!} </div> </td> @endif </tr> @endforeach </tbody> </table> </div> </div> </div> </div> </div> @endsection