2020-03-23 18:10:42 +01:00
|
|
|
@extends('portal.ninja2020.layout.app')
|
|
|
|
@section('meta_title', ctrans('texts.quotes'))
|
|
|
|
|
|
|
|
@section('header')
|
|
|
|
@if($errors->any())
|
|
|
|
<div class="alert alert-failure mb-4">
|
|
|
|
@foreach($errors->all() as $error)
|
|
|
|
<p>{{ $error }}</p>
|
|
|
|
@endforeach
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('body')
|
|
|
|
<div class="flex justify-between items-center">
|
|
|
|
<form action="{{ route('client.quotes.bulk') }}" method="post" id="bulkActions">
|
|
|
|
@csrf
|
2020-09-30 13:31:15 +02:00
|
|
|
<button type="submit" class="button button-primary bg-primary" name="action"
|
2020-03-23 18:10:42 +01:00
|
|
|
value="download">{{ ctrans('texts.download') }}</button>
|
2020-09-30 13:31:15 +02:00
|
|
|
<button type="submit" class="button button-primary bg-primary" name="action"
|
2020-03-23 18:10:42 +01:00
|
|
|
value="approve">{{ ctrans('texts.approve') }}</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<div class="flex flex-col mt-4">
|
2020-04-23 00:49:23 +02:00
|
|
|
@livewire('quotes-table')
|
2020-03-23 18:10:42 +01:00
|
|
|
</div>
|
2020-04-23 00:49:23 +02:00
|
|
|
@endsection
|