File "index.blade.php"
Full Path: /home/bettaeza/flyinsyria.com/Boat/Views/admin/index.blade.php
File size: 6.92 KB
MIME-type: text/html
Charset: utf-8
@extends('admin.layouts.app')
@section('content')
<div class="container-fluid">
<div class="d-flex justify-content-between mb20">
<h1 class="title-bar">{{!empty($recovery) ? __('Recovery') : __("All Boats")}}</h1>
<div class="title-actions">
@if(empty($recovery))
<a href="{{route('boat.admin.create')}}" class="btn btn-primary">{{__("Add new boat")}}</a>
@endif
</div>
</div>
@include('admin.message')
<div class="filter-div d-flex justify-content-between ">
<div class="col-left">
@if(!empty($rows))
<form method="post" action="{{route('boat.admin.bulkEdit')}}" class="filter-form filter-form-left d-flex justify-content-start">
{{csrf_field()}}
<select name="action" class="form-control">
<option value="">{{__(" Bulk Actions ")}}</option>
@if(!empty($recovery))
<option value="recovery">{{__(" Recovery ")}}</option>
<option value="permanently_delete">{{__("Permanently delete")}}</option>
@else
<option value="publish">{{__(" Publish ")}}</option>
<option value="draft">{{__(" Move to Draft ")}}</option>
<option value="pending">{{__("Move to Pending")}}</option>
<option value="clone">{{__(" Clone ")}}</option>
<option value="delete">{{__(" Delete ")}}</option>
@endif
</select>
<button data-confirm="{{__("Do you want to delete?")}}" class="btn-info btn btn-icon dungdt-apply-form-btn" type="button">{{__('Apply')}}</button>
</form>
@endif
</div>
<div class="col-left dropdown">
<form method="get" action="{{ !empty($recovery) ? route('boat.admin.recovery') : route('boat.admin.index')}}" class="filter-form filter-form-right d-flex justify-content-end flex-column flex-sm-row" role="search">
@if(!empty($rows) and $boat_manage_others)
<input type="text" name="s" value="{{ Request()->s }}" placeholder="{{__('Search by name')}}" class="form-control">
<div class="ml-3 position-relative">
<button class="btn btn-secondary dropdown-toggle bc-dropdown-toggle-filter" type="button" id="dropdown_filters">
{{ __("Advanced") }}
</button>
<div class="dropdown-menu px-3 py-3 dropdown-menu-right" aria-labelledby="dropdown_filters">
@include("Core::admin.global.advanced-filter")
</div>
</div>
@endif
<button class="btn-info btn btn-icon btn_search" type="submit">{{__('Search')}}</button>
</form>
</div>
</div>
<div class="text-right">
<p><i>{{__('Found :total items',['total'=>$rows->total()])}}</i></p>
</div>
<div class="panel">
<div class="panel-body">
<form action="" class="bravo-form-item">
<div class="table-responsive">
<table class="table table-hover">
<thead>
<tr>
<th width="60px"><input type="checkbox" class="check-all"></th>
<th> {{ __('Name')}}</th>
<th width="200px"> {{ __('Location')}}</th>
<th width="130px"> {{ __('Author')}}</th>
<th width="100px"> {{ __('Status')}}</th>
<th width="100px"> {{ __('Reviews')}}</th>
<th width="100px"> {{ __('Date')}}</th>
<th width="100px"></th>
</tr>
</thead>
<tbody>
@if($rows->total() > 0)
@foreach($rows as $row)
<tr class="{{$row->status}}">
<td><input type="checkbox" name="ids[]" class="check-item" value="{{$row->id}}">
</td>
<td class="title">
@if($row->is_featured)
<span class="badge badge-primary">{{ __("Featured") }}</span>
@endif
<a href="{{route('boat.admin.edit',['id'=>$row->id])}}">{{$row->title}}</a>
</td>
<td>{{$row->location->name ?? ''}}</td>
<td>
@if(!empty($row->author))
{{$row->author->getDisplayName()}}
@else
{{__("[Author Deleted]")}}
@endif
</td>
<td><span class="badge badge-{{ $row->status }}">{{ $row->status }}</span></td>
<td>
<a target="_blank" href="{{ route('review.admin.index',['service_id'=>$row->id]) }}" class="review-count-approved">
{{ $row->getNumberReviewsInService() }}
</a>
</td>
<td>{{ display_date($row->updated_at)}}</td>
<td>
@if(empty($recovery))
<a href="{{route('boat.admin.edit',['id'=>$row->id])}}" class="btn btn-primary btn-sm"><i class="fa fa-edit"></i> {{__('Edit')}}</a>
@endif
</td>
</tr>
@endforeach
@else
<tr>
<td colspan="7">{{__("No boat found")}}</td>
</tr>
@endif
</tbody>
</table>
</div>
</form>
{{$rows->appends(request()->query())->links()}}
</div>
</div>
</div>
@endsection