| Path : /var/www/html/usd_loan_system/resources/views/install/ |
|
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
| Current File : //var/www/html/usd_loan_system/resources/views/install/permissions.blade.php |
@extends('install.layouts.master')
@section('title', translate('install_permissions'))
@section('container')
<ul class="list-group">
@foreach($permissions as $path => $isWritable)
<li class="list-group-item">
{{ $path }}
@if($isWritable)
<span class="label label-default pull-right">775</span>
<span class="badge badge1"><i class="fa fa-check"></i></span>
@else
<span class="badge badge2"><i class="fa fa-times"></i></span>
@endif
</li>
@endforeach
</ul>
<div class="form-group">
@if($next)
<a href="{{ url('install/database') }}"
class="btn btn-info pull-right"> {{ translate('install_next') }}</a>
@else
<div class="alert alert-danger">{{ translate('install_check') }}</div>
<a class="btn btn-info pull-right" href="{{ Request::url() }}">
{{translate('refresh')}}
<i class="fa fa-refresh"></i></a>
@endif
</div>
@endsection