update v 1.0.7.5

This commit is contained in:
Sujit Prasad
2016-06-13 20:41:55 +05:30
parent aa9786d829
commit 283d97e3ea
5078 changed files with 339851 additions and 175995 deletions

View File

@@ -14,16 +14,16 @@ class="active"
<!-- content -->
@section('content')
<div class="box box-primary">
<div class="box-header">
<h2 class="box-title">{{Lang::get('lang.organization')}}</h2><a href="{{route('organizations.create')}}" class="btn btn-primary pull-right">{{Lang::get('lang.create_organization')}}</a></div>
<div class="box-header with-border">
<h2 class="box-title">{{Lang::get('lang.organization')}}</h2>
<a href="{{route('organizations.create')}}" class="btn btn-primary pull-right">{{Lang::get('lang.create_organization')}}</a>
</div>
<div class="box-body">
<!-- check whether success or not -->
@if(Session::has('success'))
<div class="alert alert-success alert-dismissable">
<i class="fa fa-check-circle"></i>
<b>Success</b>
<i class="fa fa-check-circle"></i>
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>
{{Session::get('success')}}
</div>
@@ -32,20 +32,18 @@ class="active"
@if(Session::has('fails'))
<div class="alert alert-danger alert-dismissable">
<i class="fa fa-ban"></i>
<b>Fail!</b>
<b>{!! Lang::get('lang.alert') !!} !</b>
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>
{{Session::get('fails')}}
</div>
@endif
{!! Datatable::table()
->addColumn(Lang::get('lang.name'),
Lang::get('lang.website'),
Lang::get('lang.phone'),
Lang::get('lang.action')) // these are the column headings to be shown
->setUrl(route('org.list')) // this is the route where data will be retrieved
->render() !!}
{!! Datatable::table()
->addColumn(Lang::get('lang.name'),
Lang::get('lang.website'),
Lang::get('lang.phone'),
Lang::get('lang.action')) // these are the column headings to be shown
->setUrl(route('org.list')) // this is the route where data will be retrieved
->render() !!}
</div>
</div>
@stop
<!-- /content -->
@stop