52 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| @extends('themes.default1.agent.layout.agent')
 | |
| 
 | |
| @section('Users')
 | |
| class="active"
 | |
| @stop
 | |
| 
 | |
| @section('user-bar')
 | |
| active
 | |
| @stop
 | |
| 
 | |
| @section('organizations')
 | |
| class="active"
 | |
| @stop
 | |
| 
 | |
| @section('PageHeader')
 | |
| <h1>{!! Lang::get('lang.organizations') !!}</h1>
 | |
| @stop
 | |
| <!-- content -->
 | |
| @section('content')
 | |
| <div class="box box-primary">
 | |
|     <div class="box-header with-border">
 | |
|         <h2 class="box-title">{{Lang::get('lang.organization_list')}}</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>
 | |
|             <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
 | |
|             {{Session::get('success')}}
 | |
|         </div>
 | |
|         @endif
 | |
|         <!-- failure message -->
 | |
|         @if(Session::has('fails'))
 | |
|         <div class="alert alert-danger alert-dismissable">
 | |
|             <i class="fa fa-ban"></i>
 | |
|             <b>{!! Lang::get('lang.alert') !!} !</b>
 | |
|             <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</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() !!}
 | |
|     </div>
 | |
| </div>
 | |
| @stop | 
