You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					116 lines
				
				6.2 KiB
			
		
		
			
		
	
	
					116 lines
				
				6.2 KiB
			| 
								 
											3 years ago
										 
									 | 
							
								@extends('admin.layouts.app')
							 | 
						||
| 
								 | 
							
								@section('content')
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    <div class="content-wrapper">
							 | 
						||
| 
								 | 
							
								        <!-- Content Header (Page header) -->
							 | 
						||
| 
								 | 
							
								        <section class="content-header">
							 | 
						||
| 
								 | 
							
								            <div class="container-fluid">
							 | 
						||
| 
								 | 
							
								                <div class="row mb-2">
							 | 
						||
| 
								 | 
							
								                    <div class="col-sm-6">
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								                    </div>
							 | 
						||
| 
								 | 
							
								                </div>
							 | 
						||
| 
								 | 
							
								            </div><!-- /.container-fluid -->
							 | 
						||
| 
								 | 
							
								        </section>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        <!-- Main content -->
							 | 
						||
| 
								 | 
							
								        <section class="content">
							 | 
						||
| 
								 | 
							
								            <div class="container-fluid">
							 | 
						||
| 
								 | 
							
								                <div class="row">
							 | 
						||
| 
								 | 
							
								                    <div class="col-md-12">
							 | 
						||
| 
								 | 
							
								                        <div class="card">
							 | 
						||
| 
								 | 
							
								                            <div class="card-header">
							 | 
						||
| 
								 
											3 years ago
										 
									 | 
							
								                                <h3 class="card-title">Pages</h3>
							 | 
						||
| 
								 
											3 years ago
										 
									 | 
							
								                                <div class="card-tools">
							 | 
						||
| 
								 
											3 years ago
										 
									 | 
							
								                                    <a class="btn btn-green" href="{{url('admin/pages/create')}}" role="button">Create</a>
							 | 
						||
| 
								 
											3 years ago
										 
									 | 
							
								                                </div>
							 | 
						||
| 
								 | 
							
								                            </div>
							 | 
						||
| 
								 | 
							
								                            <!-- /.card-header -->
							 | 
						||
| 
								 | 
							
								                            <div class="card-body">
							 | 
						||
| 
								 | 
							
								                                @include('success.success')
							 | 
						||
| 
								 | 
							
								                                @include('errors.error')
							 | 
						||
| 
								 | 
							
								                                <!-- <form id="search" class="search-form">
							 | 
						||
| 
								 | 
							
								                                    <div class="row">
							 | 
						||
| 
								 | 
							
								                                        <div class="col-md-4">
							 | 
						||
| 
								 | 
							
								                                            <div class="input-group input-group-sm mb-3 table-search w-100">
							 | 
						||
| 
								 | 
							
								                                                <input type="search" name="title" class="form-control ds-input" placeholder="Please Enter title" aria-label="Small" aria-describedby="inputGroup-sizing-sm" onchange="filterList()">
							 | 
						||
| 
								 | 
							
								                                            </div>
							 | 
						||
| 
								 | 
							
								                                        </div>
							 | 
						||
| 
								 | 
							
								                                        <div class="col-md-4">
							 | 
						||
| 
								 | 
							
								                                            <div class="input-group input-group-sm mb-3 table-search w-100">
							 | 
						||
| 
								 | 
							
								                                                <select name="status" class="form-control ds-input" onchange="filterList()">
							 | 
						||
| 
								 | 
							
								                                                    <option value="" disabled selected>Search By Status</option>
							 | 
						||
| 
								 | 
							
								                                                    @foreach(config('custom.status') as $in => $val)
							 | 
						||
| 
								 | 
							
								                                                        <option value="{{$in}}">{{$val}}</option>
							 | 
						||
| 
								 | 
							
								                                                    @endforeach
							 | 
						||
| 
								 | 
							
								                                                </select>
							 | 
						||
| 
								 | 
							
								                                            </div>
							 | 
						||
| 
								 | 
							
								                                        </div>
							 | 
						||
| 
								 | 
							
								                                    </div>
							 | 
						||
| 
								 | 
							
								                                </form> -->
							 | 
						||
| 
								 | 
							
								                                <table class="table table-bordered">
							 | 
						||
| 
								 | 
							
								                                    <thead>
							 | 
						||
| 
								 | 
							
								                                    <tr>
							 | 
						||
| 
								 | 
							
								                                        <th scope="col" style="width:10px">S.N.</th>
							 | 
						||
| 
								 
											3 years ago
										 
									 | 
							
								                                        <th scope="col" class="text-center">Title</th>
							 | 
						||
| 
								 | 
							
								                                        <th scope="col" class="text-center">Banner Image</th>
							 | 
						||
| 
								 
											3 years ago
										 
									 | 
							
								                                        <th scope="col" class="text-center">Status</th>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								                                        <!-- <th scope="col" class="text-center">ImageAlt</th> -->
							 | 
						||
| 
								 | 
							
								                                        <th scope="col" class="text-center">Action</th>
							 | 
						||
| 
								 | 
							
								                                    </tr>
							 | 
						||
| 
								 | 
							
								                                    </thead>
							 | 
						||
| 
								 | 
							
								                                    <tbody>
							 | 
						||
| 
								 | 
							
								                                    @foreach($settings as $setting)
							 | 
						||
| 
								 | 
							
								                                        <tr>
							 | 
						||
| 
								 | 
							
								                                            <th scope="row">{{$loop->iteration}}</th>
							 | 
						||
| 
								 
											3 years ago
										 
									 | 
							
								                                            <td class="text-center">{{$setting->title}}</td>
							 | 
						||
| 
								 
											3 years ago
										 
									 | 
							
								                                            <td class="text-center">
							 | 
						||
| 
								 
											3 years ago
										 
									 | 
							
								                                                <a href="{{url($setting->banner_image)}}" target="_blank">
							 | 
						||
| 
								 | 
							
								                                                    <img src="{{url($setting->banner_image)}}" alt="" style="width: 100px;">
							 | 
						||
| 
								 
											3 years ago
										 
									 | 
							
								                                                </a>
							 | 
						||
| 
								 | 
							
								                                            </td>
							 | 
						||
| 
								 | 
							
								                                            <td class="text-center"> {{config('custom.status')[$setting->status]}}</td>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								                                            <td class="action-icons d-flex justify-content-center">
							 | 
						||
| 
								 | 
							
								                                                <a href="{{url('admin/partners/'.$setting->id.'/edit')}}" class="btn btn-sm" data-bs-toggle="tooltip" data-bs-placement="top" title="edit">
							 | 
						||
| 
								 | 
							
								                                                    <i class="fas fa-pencil-alt"></i>
							 | 
						||
| 
								 | 
							
								                                                </a>
							 | 
						||
| 
								 | 
							
								                                                <a href="{{url('admin/partners/'.$setting->id.'/delete')}}" class="btn btn-sm" data-bs-toggle="tooltip" data-bs-placement="top" title="delete" onclick="return confirm('Are you sure want to delete?')">
							 | 
						||
| 
								 | 
							
								                                                    <i class="fas fa-trash"></i>
							 | 
						||
| 
								 | 
							
								                                                </a>
							 | 
						||
| 
								 | 
							
								                                            </td>
							 | 
						||
| 
								 | 
							
								                                        </tr>
							 | 
						||
| 
								 | 
							
								                                    @endforeach
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								                                    </tbody>
							 | 
						||
| 
								 | 
							
								                                </table>
							 | 
						||
| 
								 | 
							
								                                <div class="pagination-default" style="margin-top: 30px;">
							 | 
						||
| 
								 | 
							
								                                    {!! $settings->links() !!}
							 | 
						||
| 
								 | 
							
								                                </div>
							 | 
						||
| 
								 | 
							
								                            </div>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								                        </div>
							 | 
						||
| 
								 | 
							
								                        <!-- /.card -->
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								                    </div>
							 | 
						||
| 
								 | 
							
								                    <!-- /.col -->
							 | 
						||
| 
								 | 
							
								                </div>
							 | 
						||
| 
								 | 
							
								                <!-- /.row -->
							 | 
						||
| 
								 | 
							
								            </div><!-- /.container-fluid -->
							 | 
						||
| 
								 | 
							
								        </section>
							 | 
						||
| 
								 | 
							
								        <!-- /.content -->
							 | 
						||
| 
								 | 
							
								    </div>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    <script>
							 | 
						||
| 
								 | 
							
								        const tooltipTriggerList = document.querySelectorAll('[data-bs-toggle="tooltip"]')
							 | 
						||
| 
								 | 
							
								        const tooltipList = [...tooltipTriggerList].map(tooltipTriggerEl => new bootstrap.Tooltip(tooltipTriggerEl))
							 | 
						||
| 
								 | 
							
								    </script>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    <script>
							 | 
						||
| 
								 | 
							
								        const exampleEl = document.getElementById('example')
							 | 
						||
| 
								 | 
							
								        const tooltip = new bootstrap.Tooltip(exampleEl, options)
							 | 
						||
| 
								 | 
							
								    </script>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								@endsection
							 |