diff --git a/resources/views/layouts/guest.blade.php b/resources/views/layouts/guest.blade.php
index 0a17f06..846cf45 100755
--- a/resources/views/layouts/guest.blade.php
+++ b/resources/views/layouts/guest.blade.php
@@ -13,7 +13,7 @@
{{-- {!! Html::style('assets/css/bootstrap-theme.min.css') !!} --}}
{{-- {!! Html::style('assets/css/font-awesome.min.css') !!} --}}
{{-- {!! Html::style('assets/css/sb-admin-2.css') !!} --}}
- {!! Html::style('assets/css/app.css') !!}
+ {!! Html::style('assets/css/app.s.css') !!}
@yield('ext_css')
diff --git a/resources/views/payments/index.blade.php b/resources/views/payments/index.blade.php
index d0ec9b9..787e5ae 100755
--- a/resources/views/payments/index.blade.php
+++ b/resources/views/payments/index.blade.php
@@ -29,9 +29,9 @@
@forelse($payments as $key => $payment)
| {{ $payments->firstItem() + $key }} |
- {!! link_to_route('projects.payments', $payment->project->name, [$payment->project_id], ['title' => 'Lihat seluruh Pembayaran Project ini']) !!} |
+ {!! link_to_route('projects.payments', $payment->project->name, [$payment->project_id], ['title' => 'Lihat seluruh Pembayaran Project ini']) !!} [{{ $payment->type() }}] |
{{ $payment->date }} |
- {{ formatRp($payment->amount) }} |
+ {{ $payment->present()->amount }} |
{{ $payment->description }} |
{{ $payment->customer->name }} |
diff --git a/resources/views/projects/features-export-html.blade.php b/resources/views/projects/features-export-html.blade.php
index 7887857..ca5a358 100755
--- a/resources/views/projects/features-export-html.blade.php
+++ b/resources/views/projects/features-export-html.blade.php
@@ -10,15 +10,15 @@
{{-- --}}
{{ $project->name }}
- {!! Html::style('assets/css/app.css') !!}
+ {!! Html::style('assets/css/app.s.css') !!}
-
+
@foreach($features as $key => $feature)
{{ $feature->name }}
-
+
| {{ trans('app.description') }} |
| {!! nl2br($feature->description) !!} |
@@ -41,7 +41,7 @@
@endforeach
-
+
| {{ trans('app.table_no') }} |
diff --git a/resources/views/projects/payments.blade.php b/resources/views/projects/payments.blade.php
index 1e7c1c7..76cfb4e 100755
--- a/resources/views/projects/payments.blade.php
+++ b/resources/views/projects/payments.blade.php
@@ -37,7 +37,7 @@
{{ $payment->date }} |
{{ formatRp($payment->amount) }} |
{{ $payment->customer->name }} |
- {{ $payment->description }} |
+ {{ $payment->description }} [{{ $payment->type() }}] |
{!! html_link_to_route('payments.show','',[$payment->id],['class' => 'btn btn-info btn-xs','icon' => 'search','title' => 'Lihat ' . trans('payment.show')]) !!} |
@empty
diff --git a/resources/views/reports/log-files.blade.php b/resources/views/reports/log-files.blade.php
new file mode 100755
index 0000000..a651c9f
--- /dev/null
+++ b/resources/views/reports/log-files.blade.php
@@ -0,0 +1,53 @@
+@extends('layouts.app')
+
+@section('title','Log Files')
+
+@section('content')
+
+
+
+
+
+
+ | # |
+ Nama File |
+ Ukuran |
+ Tanggal Jam |
+ {{ trans('app.action') }} |
+
+
+ @forelse($logFiles as $key => $logFile)
+
+ | {{ $key + 1 }} |
+ {{ $logFile->getFilename() }} |
+ {{ formatSizeUnits($logFile->getSize()) }} |
+ {{ date('Y-m-d H:i:s', $logFile->getMTime()) }} |
+
+ {!! html_link_to_route('log-files.download','',[$logFile->getFilename()],[
+ 'class'=>'btn btn-default btn-xs',
+ 'icon' => 'download',
+ 'id' => 'download-' . $logFile->getFilename(),
+ 'title' => 'Download file ' . $logFile->getFilename()
+ ]) !!}
+ {!! html_link_to_route('log-files.show','',[$logFile->getFilename()],[
+ 'class'=>'btn btn-default btn-xs',
+ 'icon' => 'search',
+ 'id' => 'view-' . $logFile->getFilename(),
+ 'title' => 'View file ' . $logFile->getFilename(),
+ 'target' => '_blank',
+ ]) !!}
+ |
+
+ @empty
+
+ | Belum ada file logFile |
+
+ @endforelse
+
+
+
+
+
+@endsection
diff --git a/resources/views/subscriptions/create.blade.php b/resources/views/subscriptions/create.blade.php
index 404fd12..3d98053 100755
--- a/resources/views/subscriptions/create.blade.php
+++ b/resources/views/subscriptions/create.blade.php
@@ -41,6 +41,7 @@
{!! FormField::select('customer_id', $customers,['label'=> trans('subscription.customer'),'value' => Request::get('customer_id')]) !!}
{!! FormField::select('project_id', $projects,['label'=> trans('subscription.project'),'value' => Request::get('project_id')]) !!}
+ {!! FormField::select('vendor_id', $vendors,['label'=> trans('subscription.vendor'),'value' => Request::get('vendor_id')]) !!}
{!! FormField::textarea('remark',['label'=> trans('subscription.remark')]) !!}
diff --git a/resources/views/subscriptions/edit.blade.php b/resources/views/subscriptions/edit.blade.php
index 1e0ccc0..40152d6 100755
--- a/resources/views/subscriptions/edit.blade.php
+++ b/resources/views/subscriptions/edit.blade.php
@@ -36,6 +36,7 @@
{!! FormField::select('customer_id', $customers,['label'=> trans('subscription.customer')]) !!}
{!! FormField::select('project_id', $projects,['label'=> trans('subscription.project')]) !!}
+ {!! FormField::select('vendor_id', $vendors,['label'=> trans('subscription.vendor')]) !!}
{!! FormField::radios('status_id', ['Non Active','Active'],['label'=> trans('app.status')]) !!}
{!! FormField::textarea('remark',['label'=> trans('subscription.remark')]) !!}
diff --git a/resources/views/subscriptions/index.blade.php b/resources/views/subscriptions/index.blade.php
index 205ee42..abf278d 100755
--- a/resources/views/subscriptions/index.blade.php
+++ b/resources/views/subscriptions/index.blade.php
@@ -20,7 +20,7 @@
{{ trans('app.table_no') }} |
{{ trans('subscription.domain_name') }} |
{{ trans('subscription.hosting_capacity') }} |
- {{ trans('subscription.start_date') }} |
+ {{ trans('subscription.vendor') }} |
{{ trans('subscription.due_date') }} |
{{ trans('subscription.extension_price') }} |
{{ trans('app.status') }} |
@@ -32,8 +32,11 @@
{{ $subscriptions->firstItem() + $key }} |
{{ $subscription->domain_name }} |
{{ $subscription->hosting_capacity }} |
- {{ dateId($subscription->start_date) }} |
- {{ dateId($subscription->due_date) }} |
+ {{ $subscription->vendor->name }} |
+ {{ dateId($subscription->due_date) }} |
{{ formatRp($subscription->domain_price + $subscription->hosting_price) }} |
{{ $subscription->status() }} |
diff --git a/resources/views/users/calendar-vue.blade.php b/resources/views/users/calendar-vue.blade.php
new file mode 100644
index 0000000..120cfec
--- /dev/null
+++ b/resources/views/users/calendar-vue.blade.php
@@ -0,0 +1,197 @@
+@extends('layouts.app')
+
+@section('title', 'Safety Calendar')
+
+@section('content')
+
+
+
+
+
+ Safety Calendar Click to add/edit events
+
+
+
+
+
+
+@endsection
+
+@section('ext_css')
+{!! Html::style(url('assets/css/plugins/fullcalendar.min.css')) !!}
+@endsection
+
+@section('ext_js')
+{!! Html::script(url('assets/js/plugins/moment.min.js')) !!}
+{!! Html::script(url('assets/js/plugins/fullcalendar.min.js')) !!}
+{!! Html::script(url('assets/js/plugins/vue.min.js')) !!}
+{!! Html::script(url('assets/js/plugins/vue-resource.min.js')) !!}
+@endsection
+
+@section('script')
+
+@endsection
\ No newline at end of file
diff --git a/resources/views/users/calendar.blade.php b/resources/views/users/calendar.blade.php
index 82b7748..dbac6d5 100644
--- a/resources/views/users/calendar.blade.php
+++ b/resources/views/users/calendar.blade.php
@@ -94,7 +94,12 @@
-
+
| |