@extends('admin.layout') @section('content')
{{ __('OfferPrice.OfferPrices') }}
{{ __('OfferPrice.Search') }}
@if (count($offerPrices))
#
{{ __('General.Name') }}
{{ __('OfferPrice.Type of Work') }}
{{ __('OfferPrice.Phone') }}
{{ __('OfferPrice.Email') }}
{{ __('General.created') }}
{{ __('General.Options') }}
@foreach ($offerPrices as $key => $offerPrice)
{{ $key + 1 + ($offerPrices->currentPage() - 1) * $offerPrices->perPage() }}
{{ $offerPrice->name }} @if ($offerPrice->viewd == 0)
{{ __('OfferPrice.New') }}
@endif
{{ $offerPrice->type_of_work }}
{{ $offerPrice->phone }}
{{ $offerPrice->email }}
{{ $offerPrice->created_at }}
@endforeach
@else {{ __('General.No Data Avalible') }} @endif {{ $offerPrices->links() }}
@endsection