D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
kader-lms.com
/
resources
/
views
/
backEnd
/
feesCollection
/
Filename :
fees_type.blade.php
back
Copy
@extends('backEnd.master') @section('title') @lang('fees.fees_type') @endsection @section('mainContent') <section class="sms-breadcrumb mb-20"> <div class="container-fluid"> <div class="row justify-content-between"> <h1>@lang('fees.fees_type')</h1> <div class="bc-pages"> <a href="{{route('dashboard')}}">@lang('common.dashboard')</a> <a href="#">@lang('fees.fees_collection')</a> <a href="#">@lang('fees.fees_type')</a> </div> </div> </div> </section> <section class="admin-visitor-area up_st_admin_visitor"> <div class="container-fluid p-0"> @if(isset($fees_type)) @if(userPermission("fees_type_store")) <div class="row"> <div class="offset-lg-10 col-lg-2 text-right col-md-12 mb-20"> <a href="{{route('fees_type')}}" class="primary-btn small fix-gr-bg"> <span class="ti-plus pr-2"></span> @lang('common.add') </a> </div> </div> @endif @endif <div class="row"> <div class="col-lg-3"> <div class="row"> <div class="col-lg-12"> @if(isset($fees_type)) {{ Form::open(['class' => 'form-horizontal', 'files' => true, 'route' => 'fees_type_update', 'method' => 'POST', 'enctype' => 'multipart/form-data']) }} @else @if(userPermission("fees_type_store")) {{ Form::open(['class' => 'form-horizontal', 'files' => true, 'route' => 'fees_type_store', 'method' => 'POST', 'enctype' => 'multipart/form-data']) }} @endif @endif <div class="white-box"> <div class="main-title"> <h3 class="mb-15">@if(isset($fees_type)) @lang('fees.edit_fees_type') @else @lang('fees.add_fees_type') @endif </h3> </div> <div class="add-visitor"> <div class="row"> <div class="col-lg-12"> <div class="primary_input"> <label class="primary_input_label" for="">@lang('common.name') <span class="text-danger"> *</span></label> <input class="primary_input_field form-control{{ $errors->has('name') ? ' is-invalid' : '' }}" type="text" name="name" autocomplete="off" value="{{isset($fees_type)? $fees_type->name: old('name')}}"> <input type="hidden" name="id" value="{{isset($fees_type)? $fees_type->id: ''}}"> @if ($errors->has('name')) <span class="text-danger" > {{ $errors->first('name') }} </span> @endif </div> </div> </div> {{-- {{old('fees_group')}} --}} <div class="row mt-25"> <div class="col-lg-12"> <select class="primary_select form-control{{ $errors->has('fees_group') || session()->has('message-exist')? ' is-invalid' : '' }}" name="fees_group" id="fees_group" {{isset($fees_master)? 'disabled': ''}}> <option data-display="@lang('fees.fees_group') *" value="">@lang('fees.fees_group') *</option> @foreach($fees_groups as $fees_group) @if(isset($fees_type)) <option value="{{$fees_group->id}}"{{$fees_group->id == $fees_type->fees_group_id? 'selected':''}}>{{$fees_group->name}} </option> @else <option value="{{$fees_group->id}}" {{old('fees_group')!=''? (old('fees_group') == $fees_group->id? 'selected':''):''}} >{{$fees_group->name}}</option> @endif @endforeach </select> @if (session()->has('message-exist')) <span class="text-danger invalid-select" role="alert"> <strong>{{ session()->get('message-exist') }} </span> @endif @if ($errors->has('fees_group')) <span class="text-danger invalid-select" role="alert"> {{ $errors->first('fees_group') }} </span> @endif </div> </div> <div class="row mt-25"> <div class="col-lg-12"> <div class="primary_input"> <label class="primary_input_label" for="">@lang('fees.description') <span></span></label> <textarea class="primary_input_field form-control" cols="0" rows="4" name="description">{{isset($fees_type)? $fees_type->description: old('description')}}</textarea> </div> </div> </div> @php $tooltip = ""; if(userPermission("fees_type_store")){ $tooltip = ""; }else{ $tooltip = "You have no permission to add"; } @endphp <div class="row mt-40"> <div class="col-lg-12 text-center"> <button class="primary-btn fix-gr-bg submit" data-toggle="tooltip" title="{{$tooltip}}"> <span class="ti-check"></span> @if(isset($fees_type)) @lang('fees.update_content') @else @lang('fees.save_content') @endif </button> </div> </div> </div> </div> {{ Form::close() }} </div> </div> </div> <div class="col-lg-9"> <div class="white-box"> <div class="row"> <div class="col-lg-4 no-gutters"> <div class="main-title"> <h3 class="mb-15"> @lang('fees.fees_type_list')</h3> </div> </div> </div> <div class="row"> <div class="col-lg-12"> <x-table> <table id="table_id" class="table" cellspacing="0" width="100%"> <thead> <tr> <th> @lang('common.name')</th> <th> @lang('fees.fees_group')</th> <th> @lang('common.description')</th> <th> @lang('common.action')</th> </tr> </thead> <tbody> @foreach($fees_types as $fees_type) <tr> <td>{{@$fees_type->name}}</td> <td>{{@$fees_type->fessGroup->name}}</td> <td>{{@$fees_type->description}}</td> <td> <x-drop-down> @if(userPermission('fees_type_edit')) <a class="dropdown-item" href="{{route('fees_type_edit', [$fees_type->id])}}">@lang('common.edit')</a> @endif @if(userPermission('fees_type_delete')) @if(!@$fees_type->un_semester_label_id) <a class="dropdown-item" data-toggle="modal" data-target="#deleteFeesTypeModal{{@$fees_type->id}}" href="#">@lang('common.delete')</a> @endif @endif </x-drop-down> </div> </div> </td> </tr> <div class="modal fade admin-query" id="deleteFeesTypeModal{{@$fees_type->id}}" > <div class="modal-dialog modal-dialog-centered"> <div class="modal-content"> <div class="modal-header"> <h4 class="modal-title">@lang('fees.delete_fees_type')</h4> <button type="button" class="close" data-dismiss="modal">×</button> </div> <div class="modal-body"> <div class="text-center"> <h4>@lang('common.are_you_sure_to_delete')</h4> </div> <div class="mt-40 d-flex justify-content-between"> <button type="button" class="primary-btn tr-bg" data-dismiss="modal">@lang('common.cancel')</button> <a href="{{route('fees_type_delete', [$fees_type->id])}}"><button class="primary-btn fix-gr-bg" type="submit">@lang('common.delete')</button></a> </div> </div> </div> </div> </div> @endforeach </tbody> </table> </x-table> </div> </div> </div> </div> </div> </div> </section> @endsection @include('backEnd.partials.data_table_js')