@extends('layouts.admin') @section('title') {{ __('Site Settings') }} @endsection @php $logo = \App\Models\Utility::get_file('logo/'); $path_imgs = \App\Models\Utility::get_file('/'); $setting = \App\Models\Utility::settings(); @endphp @push('css') @endpush @php if ($settings['color']) { $color = $settings['color']; } @endphp @section('content')
{{ __('Edit your Theme.') }}
{{ __('Edit your Invoice details.') }}
{{ __('Edit your Payment details.') }}
{{ __('This detail will show in your Invoice.') }}
{{ __('You can manage your tax rate here.') }}
{{ __('You can manage your Contract type here.') }}
{{ __('You can manage your tracker interval time here.') }}
{{ __('You can manage your Meeting setting Information.') }}
{{ __('You can manage your slack setting information.') }}
{{ __('You can manage your telegram setting information.') }}
{{ __('You can manage your Calendar setting information.') }}
{{ __('You can manage your Webhook setting information.') }}
{{ __('Edit your email details.') }}
{{ __('Name') }} | {{ __('Rate %') }} | {{ __('Action') }} |
---|---|---|
{{ $tax->name }} | {{ $tax->rate }} | {!! Form::open(['method' => 'DELETE', 'route' => ['taxes.destroy', $tax->id], 'id' => 'delete-tax-' . $tax->id]) !!} {!! Form::close() !!} |
{{ __('No Taxes Found.') }} |
{{ __('Name') }} | {{ __('Action') }} | |
---|---|---|
{{ $contract->name }} | {!! Form::open([ 'method' => 'DELETE', 'route' => ['contract.destroy', $contract->id], 'id' => 'delete-contract-' . $contract->id, ]) !!} {!! Form::close() !!} | |
{{ __('No Contract Found.') }} |
{{ __('Module') }} | {{ __('URL') }} | {{ __('Method') }} | {{ __('Action') }} |
---|---|---|---|
{{ $webhook->module }} | {{ $webhook->url }} | {{ $webhook->method }} | {!! Form::open([ 'method' => 'DELETE', 'route' => ['webhook.destroy', $webhook->id], 'id' => 'delete-webhook-' . $webhook->id, ]) !!} {!! Form::close() !!} |